From 283e83935807ba6b4480f8606967b7991b24d4d6 Mon Sep 17 00:00:00 2001 From: Arjun C Vinod <68469520+arjuncvinod@users.noreply.github.com> Date: Wed, 5 Jul 2023 13:17:22 +0530 Subject: [PATCH 1/2] Update README.md --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6edd67d..9d763ed 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Build-Your-Own-RESTful-API -## Example Documents +### Example Documents ``` { "_id" : ObjectId("5c139771d79ac8eac11e754a"), @@ -26,7 +26,6 @@ ## Server Starting Code ``` -//jshint esversion:6 const express = require("express"); const bodyParser = require("body-parser"); @@ -44,7 +43,7 @@ app.use(express.static("public")); //TODO -app.listen(3000, function() { +app.listen(3000, ()=> { console.log("Server started on port 3000"); }); ``` From 0453e96e32030f281edf55f820dc40b1df0c546a Mon Sep 17 00:00:00 2001 From: Arjun C Vinod Date: Thu, 3 Aug 2023 23:45:16 +0530 Subject: [PATCH 2/2] Create .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..07e6e47 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/node_modules