Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build-Your-Own-RESTful-API

## Example Documents
### Example Documents
```
{
"_id" : ObjectId("5c139771d79ac8eac11e754a"),
Expand All @@ -26,7 +26,6 @@
## Server Starting Code

```
//jshint esversion:6

const express = require("express");
const bodyParser = require("body-parser");
Expand All @@ -44,7 +43,7 @@ app.use(express.static("public"));

//TODO

app.listen(3000, function() {
app.listen(3000, ()=> {
console.log("Server started on port 3000");
});
```
Expand Down