Create server in node js via below code, Just paste below code in server.js file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
// const http = require('http'); const hostname = '127.0.0.1'; const port = 3000; const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'text/plain'); res.end('Hello World\n'); }); server.listen(port, hostname, () => { console.log(`Server running at http://${hostname}:${port}/`); }); |
– Execute JS file from command prompt
node server.js
More Stories
Configuring Apache for Node.js
Connect MQTT with Node.js
Video streaming using Node.js and HTML5