Skip to content

Commit be82b17

Browse files
committed
Update README.md
1 parent f694116 commit be82b17

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Created with <3 for front-end developers who need a quick back-end for prototypi
66

77
* [Egghead.io free video tutorial - Creating demo APIs with json-server](https://egghead.io/lessons/nodejs-creating-demo-apis-with-json-server)
88
* [JSONPlaceholder - Live running version](http://jsonplaceholder.typicode.com)
9+
10+
_See also [hotel](https://github.com/typicode/hotel), a simple server manager that works with JSON Server._
911

1012
## Example
1113

@@ -34,11 +36,11 @@ Now if you go to [http://localhost:3000/posts/1](), you'll get
3436
{ "id": 1, "title": "json-server", "author": "typicode" }
3537
```
3638

37-
Also, if you make POST, PUT, PATCH or DELETE requests, changes will be automatically saved to `db.json` using [lowdb](https://github.com/typicode/lowdb).
39+
Also, if you make POST, PUT, PATCH or DELETE requests, changes will be automatically and safely saved to `db.json` using [lowdb](https://github.com/typicode/lowdb).
3840

3941
## Routes
4042

41-
Based on the previous `db.json` file, here are all the default routes. You can also add [other routes](#add-routes).
43+
Based on the previous `db.json` file, here are all the default routes. You can also add [other routes](#add-routes) using `--routes`.
4244

4345
```
4446
GET /posts

0 commit comments

Comments
 (0)