Create server.js

This commit is contained in:
Omar Santos 2021-04-11 13:31:32 -04:00
parent 56d9bc9aef
commit 5c52f16bda

View File

@ -0,0 +1,14 @@
const http = require('http');
const hostname = '0.0.0.0';
const port = 8080;
const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello from node.js!');
});
server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});