The task is to modify starter code to create an application called Note Taker that can be used to write and save notes. This application will use an Express.js back end and will save and retrieve note data from a JSON file.
The application’s front end has already been created. The goal is to build the back end, connect the two, and then deploy the entire application to Heroku.
AS A small business owner
I WANT to be able to write and save notes
SO THAT I can organize my thoughts and keep track of tasks I need to complete
GIVEN a note-taking application
WHEN I open the Note Taker
THEN I am presented with a landing page with a link to a notes page
WHEN I click on the link to the notes page
THEN I am presented with a page with existing notes listed in the left-hand column, plus empty fields to enter a new note title and the note’s text in the right-hand column
WHEN I enter a new note title and the note’s text
THEN a Save icon appears in the navigation at the top of the page
WHEN I click on the Save icon
THEN the new note I have entered is saved and appears in the left-hand column with the other existing notes
WHEN I click on an existing note in the list in the left-hand column
THEN that note appears in the right-hand column
WHEN I click on the Write icon in the navigation at the top of the page
THEN I am presented with empty fields to enter a new note title and the note’s text in the right-hand column
Install Heroku CLI
brew install heroku
heroku --version
Declare Application Dependencies
npm init -y
npm install express
Specify Version of Node
node --version
Build the Application and Run it Locally
npm install
npm i uuid@3.4.0
heroku local web --port 3001
Deploy Application to Heroku
git add .
git commit -m "commit message"
heroku login
heroku create
git push heroku main
heroku open
The following images show the web application’s appearance and functionality:
Link to the Deployed Application: https://rocky-temple-86864.herokuapp.com/
On the back end, the application should include a db.json
file that will be used to store and retrieve notes using the fs
module.
The following HTML routes should be created:
GET /notes
should return the notes.html
file.
GET *
should return the index.html
file.
The following API routes should be created:
GET /api/notes
should read the db.json
file and return all saved notes as JSON.
POST /api/notes
should receive a new note to save on the request body, add it to the db.json
file, and then return the new note to the client. You’ll need to find a way to give each note a unique id when it’s saved (look into npm packages that could do this for you).
You haven’t learned how to handle DELETE requests, but this application offers that functionality on the front end. As a bonus, try to add the DELETE route to the application using the following guideline:
DELETE /api/notes/:id
should receive a query parameter that contains the id of a note to delete. To delete a note, you’ll need to read all notes from the db.json
file, remove the note with the given id
property, and then rewrite the notes to the db.json
file.For any inquiries, please contact me at kaitlynatif90@hotmail.com
MIT License
Copyright (c) [2023] [Kaitlyn Atif]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.