website is under construction
Standard Library

HTTP

Methods

http.handle()

Registers a new handler for the given pattern.

http.handle("/", function(request) {
    print("hello world")
})

http.listen()

Starts an HTTP server with the given address. Executes the provided callback if successful.

http.listen(3000, function() {
    print("Server started at http://localhost:3000 🌱")
})