diff --git a/app.js b/app.js index e78e467..c8fd021 100644 --- a/app.js +++ b/app.js @@ -6,7 +6,7 @@ const port = 8082; const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'text/plain'); - res.end('Hello World. My name is Vincent Danh'); + res.end('Hello World. My name is Issael Altero'); }); server.listen(port, hostname, () => {