diff --git a/index.js b/index.js index 4631d25..27ff8d0 100644 --- a/index.js +++ b/index.js @@ -5,7 +5,7 @@ const PORT = 8000 http .createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }) - res.end('Hello World!') + res.end('Hello World!!!!!!!!!') }) .listen(PORT)