From 61e6d3ced31387d7c6ad97673d477d67db9b9a73 Mon Sep 17 00:00:00 2001 From: Dobromir Popov Date: Wed, 23 Aug 2023 21:23:14 +0000 Subject: [PATCH] test --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index d54943f..3b1115e 100644 --- a/index.js +++ b/index.js @@ -15,7 +15,7 @@ const app = express(); var httpServer = http.createServer(app); // adding Helmet to enhance your API's security app.use(helmet()); -// using bodyParser to parse JSON bodies into JS objects +// using bodyParser to parse JSON bodies into JS objects app.use(bodyParser.json()); // enabling CORS for all requests app.use(cors());