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
- Host: GitHub
- URL: https://github.com/shaikahmadnawaz/rest-api
- Owner: shaikahmadnawaz
- Created: 2022-12-06T16:44:40.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T18:10:26.000Z (over 3 years ago)
- Last Synced: 2026-01-03T16:19:50.923Z (6 months ago)
- Topics: ecommerce, expressjs, jwt, mongodb, nodejs, rest-api
- Language: JavaScript
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```