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());