-
Add a simple note with title and description
-
Add a list of items
-
Add an image
-
Add a Google Map location by moving the marker
-
Add a link
-
Search Bar on the right side of navbar lets you type and filter your notes
-
Delete notes by clicking on the trash icon present in each card
A[SignIn Page] -- Successful SignIn --> B(Home Page)
A -- Failed SignIn --> A
A -- Register Button Clicked --> C(Register Page)
B --> D{Add, Delete and Search notes}
C --Successful Registration --> A
-
The first page is the SignIn Page where you can login with your name and email-id if you are already registered
-
Otherwise you can click on the Register button and register with your name and email-id
-
After successful registration you will be redirected to the SignIn page again
-
After successfully signing in, the Home Page will be visible where you can start adding notes
Clone the repository on your local machine and make sure you have node and npm installed. If not you can follow the instructions here
-
Open a terminal window and switch to the cloned repository cd > notesapp
-
Execute npm install
-
The dependencies required for the backend will get installed by this command
-
Now you are ready to start the server
-
Execute npm start
-
The server should be up and running at localhost:5000
-
Open a new terminal window and switch to the client folder cd > notesapp > client
-
Execute npm install to install the dependecies as we did earlier
-
Just one more step and you will be ready to start and play with the frontend
-
Execute npm start
-
Your browser window will launch automatically and the site should be hosted at localhost:3000 or any other port if it is busy.