How to Install Node.js and NPM on Your Windows System

PHOTO EMBED

Tue Apr 04 2023 06:13:55 GMT+0000 (Coordinated Universal Time)

Saved by @kkarimi47

var http = require('http');
 http.createServer(function (req, res) {
   res.writeHead(200, {'Content-Type': 'text/html'});
   res.end('Hello World!');
 }).listen(8080);
content_copyCOPY

https://phoenixnap.com/kb/install-node-js-npm-on-windows