The goal of this assignment is to create an application that can be used to write, save, and delete notes entered by an end user. This application has both a front-end and back-end environment. The code for the front-end of the note taker application was already provided, so the main goal for students was to develop the back-end of the application and connect the developed back-end code to the provided front-end code.
- URL link to deployed application on Heroku - Note Taker Application on Heroku
- If testing locally on your machine/computer see the Local Setup section.
AS A user, I want to be able to write and save notes
I WANT to be able to delete notes I've written before
SO THAT I can organize my thoughts and keep track of tasks I need to complete
-
Application should allow users to create and save notes.
-
Application should allow users to view previously saved notes.
-
Application should allow users to delete previously saved notes.
- Make sure
Node.jsis installed in your machine. IfNode.jsis not installed on your machine, click here to download the application. - The
package.jsonfile included in this Note Taker repo already lists all Node modules, NPM packages, and other dependencies that are required to successfully run this application. Please make sure to run thenpm installcommand within the terminal, while in the root directory to install all required modules/packages. Then runnode server.jsto start the server, and simply navigate to this urlhttp://localhost:3000/within you browser's url tab.
