I need to send json data to the client in Nodejs NOT using Express or any other frameworks. How is it possible to achieve ?
const server = http.createServer(function(request, response){
switch (request.url){
case '/':
mainPage(request, response);
break;
default:
response.writeHead(404);
response.end('Page not found');
}
})
function mainPage(request, response){
const clientData = {"status": "ok"}
.... // send back to client, how ?
}