An open API service indexing awesome lists of open source software.

https://github.com/soyelmoreno/node-express-book-api

Tutorial: Build a REST API for managing books using Node and Express
https://github.com/soyelmoreno/node-express-book-api

api express learning node rest tutorial

Last synced: 6 months ago
JSON representation

Tutorial: Build a REST API for managing books using Node and Express

Awesome Lists containing this project

README

          

# Building a REST API with Node and Express

Following along with the tutorial here:
https://stackabuse.com/building-a-rest-api-with-node-and-express/

A small book dataset, with correctly escaped double-quotes, is here:
https://gist.github.com/nanotaboada/6396437

A larger book dataset is here:
https://github.com/benoitvallon/100-best-books/blob/master/books.json

Both are copied into this repo:

- [books.json](https://github.com/soyelmoreno/tutorial-node-express-book-api/blob/97a09e6b3bea980e4844b7a22c6bda640f209c6a/data/books.json) (small)
- [books2.json](https://github.com/soyelmoreno/tutorial-node-express-book-api/blob/97a09e6b3bea980e4844b7a22c6bda640f209c6a/data/books2.json) (large)

# Get started

Clone the repo and then run:

```
npm install
```