Skip to main content
Module

x/fastro/benchmarks/node_http.js

Fast and simple web application framework for deno
Go to Latest
File
const http = require("http");
const hostname = "127.0.0.1";const port = 3006;
const server = http.createServer((req, res) => { res.end("Hello!");});
server.listen(port, hostname, () => { console.log("node listening on:", port);});