https://github.com/gitericsson/book-management-api
A RESTful API for managing a collection of books. The API supports basic CRUD (Create, Read, Update, Delete) operations.
https://github.com/gitericsson/book-management-api
api express jest nodejs postman typescript
Last synced: 18 days ago
JSON representation
A RESTful API for managing a collection of books. The API supports basic CRUD (Create, Read, Update, Delete) operations.
- Host: GitHub
- URL: https://github.com/gitericsson/book-management-api
- Owner: gitEricsson
- Created: 2024-06-08T15:02:16.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-10T17:15:58.000Z (almost 2 years ago)
- Last Synced: 2025-08-02T03:59:52.108Z (9 months ago)
- Topics: api, express, jest, nodejs, postman, typescript
- Language: TypeScript
- Homepage: https://documenter.getpostman.com/view/29447789/2sA3XLEPmn
- Size: 29.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Book Management API
## About
A RESTful API for managing a collection of books. The API supports basic CRUD (Create, Read, Update, Delete) operations.
## Link
API documentation : [Postman](https://documenter.getpostman.com/view/29447789/2sA3XLEPmn)
## Getting started
### Clone the repository
```
$ git clone https://github.com/gitEricsson/Book-Management-API.git
cd book-management-api
```
### Install dependencies
After cloning book-management-api, install the dependencies by running:
```
$ npm install
```
### Initialize server
To start the server, run:
```
$ npm start
```
### Run tests
To run the tests, use the following command:
```
$ npm test
```