Getting Started
This package has simple createCrud() method that auto create the all CRUD routes for you.
Warning
This package only suppoers mongodb for the database, other database drivers will intergrate soon.
Supported Methods & Endpoints
| Method | Endpoint | Description |
|---|---|---|
GET |
/ |
Fetch resource |
GET |
/:id |
Fetch By Id |
POST |
/ |
Create resource |
PUT |
/:id |
Update resource |
DELETE |
/:id |
Delete resource |