Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enes9103/react_recap_crud_example_api
https://github.com/enes9103/react_recap_crud_example_api
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/enes9103/react_recap_crud_example_api
- Owner: enes9103
- Created: 2022-07-04T20:24:09.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-11T20:39:07.000Z (about 2 years ago)
- Last Synced: 2024-05-01T16:35:14.174Z (7 months ago)
- Language: JavaScript
- Size: 324 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# API Base URLs
## https://tutorials-api-cw.herokuapp.com/api/tutorials
## https://axios-example-cw.herokuapp.com/api/tutorials
## https://cw-axios-example.herokuapp.com/api/tutorials
### API ENDPOINTS
- GET `api/tutorials` get all Tutorials
- GET `api/tutorials/:id` get Tutorial by id
- POST `api/tutorials` add new Tutorial
- PUT `api/tutorials/:id` update Tutorial by id
- DELETE `api/tutorials/:id` remove Tutorial by id
- DELETE `api/tutorials` remove all Tutorials
- GET `api/tutorials/published` find all published Tutorials
- GET `api/tutorials?title=[kw]` find all Tutorials which title contains 'kw'# Deployed Frontend
## https://axios-example.netlify.app/