UNPKG

exercise

Version:

hands on nodejs exercises/experments

10 lines (6 loc) 262 B
var http = require('http'); http.createServer(function(request, response){ response.writeHead(200, {'Content-Type': 'text/plain'}); response.end('Hello!!, NodeJS\n'); }).listen(9090); console.log('Server running at http://127.0.0.1:9090/');