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

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.

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
```