A note taking application built with an Express backend for API calls
Deployment - https://ashleys-simple-notes.herokuapp.com/
Clone the repo
git clone https://github.com/minusInfinite/simple-notes.git
cd /simple-notesThis application uses the package manager Yarn - https://yarnpkg.com/ You may need to insure Yarn Classic is installed globally beforehand
npm install -g yarn
yarn installIf there are any issues, you may need to just run yarn install again to setup the Plug and Play system correctly.
To start the local express server run one of the following scripts
yarn start //to start the server with node
yarn dev //to start the server with nodemonMETHOD: GET
ENDPOINF: /api/notes
Get the current list of notes.
METHOD: POST
ENDPOINF: /api/notes
Post a new Note
METHOD: DELETE
ENDPOINF: /api/notes/:note_id
Delete a note via it's assigned ID.
An example of the landing page

An example of the page Notes are written

express - https://expressjs.com/ UUID - https://github.com/uuidjs/uuid