This is a full stack application utilizing React, Redux, Express, Node, and typescript.
Tutorial first part Tutorial second part HTTP Status Codes SVG Background
Using MongoDB atlas
1. express - used for our server
2. nodemon - Allows us to make changes without restarting our server
3. cors - Cross Origin Resource Sharing
4. mongoose - Used for our object data modeling
5. dotenv - allows us to use .env file to hide our secrets
Name | Method | Path |
---|---|---|
List | GET | /posts |
Retrieve | GET | /posts/id |
Update | Patch | /posts/id |
Update | Patch | /posts/id/likePost |
Create | POST | /posts |
Delete | DELETE | /posts/id |
-------------: | :-------------: | -----------------: |