kali ini kita membuat web simpel pakai NodeJs
- membuat file .js
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('EveryBody Fellas!');
}).listen(8080);
- buka cmd dan ubah file directory ke file .js mu tadi, and then write this line
node <filename>.js
- Cek browsermu dengan link ini