Fintech Environment

var http = require('http');

http.createServer(function (request, response) {
    response.writeHead(200, {'content-type': 'text/html'});
    response.write('Hello, Wolrd!!');
    response.end();
}).listen(8889);

console.log('server running at http://localhost:8889');

© 2018. All rights reserved.

Powered by Hydejack v8.4.0