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
- Host: GitHub
- URL: https://github.com/soyelmoreno/node-express-book-api
- Owner: soyelmoreno
- Created: 2021-01-22T21:26:50.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-05-23T06:25:42.000Z (9 months ago)
- Last Synced: 2025-07-06T18:43:45.631Z (7 months ago)
- Topics: api, express, learning, node, rest, tutorial
- Language: JavaScript
- Homepage: https://stackabuse.com/building-a-rest-api-with-node-and-express/
- Size: 58.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```