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

https://github.com/arisupriatna14/ecommerce-server

E-Commerce Server 🔌📡
https://github.com/arisupriatna14/ecommerce-server

ecommerce expressjs mongodb mongoose mvc nodejs server

Last synced: 3 months ago
JSON representation

E-Commerce Server 🔌📡

Awesome Lists containing this project

README

          

# E-Commerce

List of routes customers:

| **Routes** | **HTTP** | **Description** |
|------------|----------|-----------------|
| /api/customers | POST | Create new account |
| /api/customers/signin/facebook | POST | Sign customer with facebook |
| /api/customers/signin | POST | Sign customer |

List of routes items:

| **Routes** | **HTTP** | **Description** |
|------------|----------|-----------------|
| /api/items | GET | Get all items |
| /api/items/addItems | POST | Add items |
| /api/items/updateItem/:itemId | PUT | Update items |
| /api/items/deleteItem/:itemId | DELETE | Delete items |

**Usage**
with only npm:
```
npm install
npm start
```