mirror of
https://github.com/The-Art-of-Hacking/h4cker.git
synced 2024-10-01 01:25:43 -04:00
14 lines
343 B
JavaScript
14 lines
343 B
JavaScript
|
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}/`);
|
||
|
});
|