Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cecile-hirschauer/react-node-app-note
A responsive notes app that allows the user to view, create, update and delete notes
https://github.com/cecile-hirschauer/react-node-app-note
crud elephantsql fullstack-development node-js prisma reactjs responsive typescript
Last synced: 29 days ago
JSON representation
A responsive notes app that allows the user to view, create, update and delete notes
- Host: GitHub
- URL: https://github.com/cecile-hirschauer/react-node-app-note
- Owner: Cecile-Hirschauer
- Created: 2023-10-03T09:43:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-04T09:16:02.000Z (about 1 year ago)
- Last Synced: 2023-10-05T04:07:19.947Z (about 1 year ago)
- Topics: crud, elephantsql, fullstack-development, node-js, prisma, reactjs, responsive, typescript
- Language: TypeScript
- Homepage:
- Size: 224 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Node Notes App
## Create the UI
- Create React App
- Adding UI Elements
- Adding CSS
- Adding Dummy Notes
- Note Form
- Saving New Note to State
- Updating a Note in State I
- Updating a Note in State II
- Remove Note From State## Create the Backend
- Create a Node Server
- Create a Postgres DB
- Populate the DB
- Connect to DB using Prisma## Adding API Endpoints
- POST Endpoint
- PUT Endpoint
- DELETE Endpoint## Connect UI to Backend
- Get and Display Notes
- Save New Note
- Save Updated Note
- Save Deleted Note