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

https://github.com/shaikahmadnawaz/rest-api

Building the REST APIs for the e-commerce application
https://github.com/shaikahmadnawaz/rest-api

ecommerce expressjs jwt mongodb nodejs rest-api

Last synced: 3 months ago
JSON representation

Building the REST APIs for the e-commerce application

Awesome Lists containing this project

README

          

# REST APIs

Building the REST APIs for the e-commerce application.

### Setup

```
npm init -y
```

```
npm install express
```

We can use es6 modules type syntax in node applications by using this package:

```
npm install esm
```

```
npm install nodemon -D
```

We can use dotenv package to store secret keys and tokens:

```
npm install dotenv
```

To start the server:

```
npm run dev
```