This repo includes an API backend that transmits Bookmark model data as JSON for use in the React frontend. Users may create, read, update, or delete data, through this API connected to MongoDB.
Deployed frontend
Frontend repo
Deployed backend
- Dotenv
- Express
- Mongoose
- Morgan
- Cors
Models implemented into the bookmark app:
- Bookmark:
- title: String
- url: String
url | method | action |
---|---|---|
/bookmark | get | get all books (index) |
/bookmark | post | get a particular books (create) |
/bookmark/:id | put | get a particular books (update) |
/bookmark/:id | delete | get a particular books (destroy) |