Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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