Create a custom server using http module and explore the other modules of Node JS like OS, path, event. File 1: os.js 1const os=require('os'); 2console.log('Data retrieved by Using OS Module in Node Js\n'); 3console.log('Hostname:'+os.hostname()+'\n'); …
Read More