diff --git a/node-js-demo/app.js b/node-js-demo/app.js index b6938a8..0a55137 100644 --- a/node-js-demo/app.js +++ b/node-js-demo/app.js @@ -4,9 +4,9 @@ const server = http.createServer((req, res) => { res.setHeader("Content-Type", "application/json"); res.writeHead(200); - res.end(`{ "status": "success", "message": "You're reading The NGINX Handbook!\n" }`); + res.end(`{ "status": "success", "message": "You're reading The NGINX Handbook!" }\n`); }); server.listen(3000, 'localhost', () => { console.log('running on http://localhost:3000/'); -}); \ No newline at end of file +});