Pengenalan Node JS
Installasi NodeJS
Get Started
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('Selamat Pagi!');
}).listen(8080);Last updated