📶
HTTP
Provides HTTP and server implementations.
Registers a new handler for the given pattern.
http.handle("/", function(request) {
printftw("hello world")
})
Starts an HTTP server with the given address. Executes the provided callback if successful.
http.listen(3000, function() {
printftw("Server started at http://localhost:3000 🌱")
})
Last modified 6mo ago