diff --git a/README.md b/README.md index e084f0d0db..bd3ce2d598 100644 --- a/README.md +++ b/README.md @@ -2,5 +2,5 @@ This is the simplest possible nodejs api using the base http library that responds to any request with: ``` -Yo! +Yo BRUH! ``` diff --git a/index.js b/index.js index 5f35242ee8..d9c7dd8dbe 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,9 @@ + var http = require('http'); http.createServer(function (req, res) { + // const url = "https://jsonplaceholder.typicode.com/posts/1"; console.log(`Just got a request at ${req.url}!`) - res.write('Yo!'); - res.end(); -}).listen(process.env.PORT || 3000); \ No newline at end of file + + res.write("yo") + res.end(); +}).listen(process.env.PORT || 3000);