gtm
Version:
Binding to the GT.M hierarchical database.
19 lines (11 loc) • 351 B
JavaScript
// load http module
var http = require('http')
// create http server
var server = http.createServer(function (req, res) {
// content header
res.writeHead(200,{'content-type': 'text/plain'});
// wrtie messae and signal communication is complete
res.end("Hello, World!\n");
});
server.listen(8124);
console.log('Server running on 8124');