πΆHTTP
Provides HTTP and server implementations.
Methods
http.handle()
http.handle()http.handle("/", function(request) {
printftw("hello world")
})http.listen()
http.listen()http.listen(3000, function() {
printftw("Server started at http://localhost:3000 π±")
})Last updated