Bacancy Technology
Bacancy Technology represents the connected world, offering innovative and customer-centric information technology experiences, enabling Enterprises, Associates and the Society to Rise™.
12+
Countries where we have happy customers
1050+
Agile enabled employees
06
World wide offices
12+
Years of Experience
05
Agile Coaches
14
Certified Scrum Masters
1000+
Clients projects
1458
Happy customers
Artificial Intelligence
Machine Learning
Salesforce
Microsoft
SAP
October 11, 2023
var http = require('http'); var fs = require('fs'); var server = http.createServer(function (req, resp) { fs.readFile("AppPages/MyPage.html", function (error, pgResp) { if (error) { resp.writeHead(404); resp.write('Contents you are looking are Not Found'); } else { resp.writeHead(200, { 'Content-Type': 'text/html' }); resp.write(pgResp); } resp.end(); }); }); server.listen(5050);