Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vectormike/imol
Product Inventory App built with React, Redux, Express & MongoDB (In-progress)
https://github.com/vectormike/imol
burger-menu circleci docker es6 express javascript jest mongodb react redux testing
Last synced: 15 days ago
JSON representation
Product Inventory App built with React, Redux, Express & MongoDB (In-progress)
- Host: GitHub
- URL: https://github.com/vectormike/imol
- Owner: Vectormike
- Created: 2019-10-04T15:31:27.000Z (about 5 years ago)
- Default Branch: develop
- Last Pushed: 2023-03-03T11:36:08.000Z (almost 2 years ago)
- Last Synced: 2023-10-20T23:39:09.874Z (about 1 year ago)
- Topics: burger-menu, circleci, docker, es6, express, javascript, jest, mongodb, react, redux, testing
- Language: JavaScript
- Homepage:
- Size: 3.48 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- Security: SECURITY.md
Awesome Lists containing this project
README
## 📖 Getting started
1. Clone this repository into your local machine:
```
git clone https://github.com/Vectormike/iMol.git
```
2. Install dependencies
```
npm install
```## Endpoints
HTTP VERB
ENDPOINT
FUNCTIONALITYPOST
api/auth/register
Users can registerPOST
api/auth/login
Users can loginGET
api/products
Gets all productsGET
api/products/:id
Get a product by namePOST
api/products
Add a productPATCH
api/products/:id
Edit a product(details)DELETE
api/products/:id
Delete a product