Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sendistephen/note_book
This is a simple note book application that helps users to note down their ideas they want to accomplish in life
https://github.com/sendistephen/note_book
expressjs heroku jwt-authentication nodejs passportjs
Last synced: 10 days ago
JSON representation
This is a simple note book application that helps users to note down their ideas they want to accomplish in life
- Host: GitHub
- URL: https://github.com/sendistephen/note_book
- Owner: sendistephen
- Created: 2019-07-19T19:38:15.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T04:57:53.000Z (about 2 years ago)
- Last Synced: 2023-03-06T01:23:01.403Z (almost 2 years ago)
- Topics: expressjs, heroku, jwt-authentication, nodejs, passportjs
- Language: HTML
- Homepage: https://notes-pro.herokuapp.com/
- Size: 225 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Notes Application
This is a node js application that enables a user to to quickly note down his ideasCheckout the [demo](https://notes-pro.herokuapp.com/) on heroku
## Look and Feel
![alt text](public/images/screen.png)## Key Features
1. User can create an account
2. User can login
3. User can add notes
4. User can update notes
5. User can delete notes
6. User can view notes## Technologies used
1. Node Js
2. MongoDB## Getting Started
The quickest way to get started is to clone the repository:```sh
# clone the repository by typing the command below in your terminal
$ git clone https://github.com/SendiSteve/notes_idea.git# change the directory
$ cd notes_idea# install all the required dependencies
$ npm install# Start the server
$ node app.js
```
**Note**: Highly suggest you install [nodemon](https://nodemon.io/). It will monitor for any changes in your source and automatically restart your server saving you lots of time.```sh
# To install, from your terminal run
$ npm install -g nodemon# Once installed, instead of `node app.js` use
$ nodemon app.js.
```### Todos
- Write tests
- Share your ideas publicly to allow other users comment and give feedback