article

Wednesday, September 22, 2021

How to install node.js on Mac and run nodejs hello program

How to install node.js on Mac and run nodejs hello program hello.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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');
});
 
server.listen(port, hostname, () => {
  console.log(`Server running at http://${hostname}:${port}/`);
});

Related Post