https://github.com/aman-dutta/notes-app
Simple note project to try my hands on Javascript
https://github.com/aman-dutta/notes-app
javascript-library
Last synced: 3 months ago
JSON representation
Simple note project to try my hands on Javascript
- Host: GitHub
- URL: https://github.com/aman-dutta/notes-app
- Owner: aman-dutta
- Created: 2020-05-28T08:36:21.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-03T19:20:49.000Z (over 3 years ago)
- Last Synced: 2025-01-16T02:24:28.648Z (4 months ago)
- Topics: javascript-library
- Language: JavaScript
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Notes - app
Note taking made by Node.js from [The Complete Node.js Developer Course](https://www.udemy.com/course/the-complete-nodejs-developer-course-2/) \
The npm used are:
* yargs
* chalk## How to Run
Step 1:
```
node app.js [OPTION] [TITLE]
```
The [OPTIONS] may be one of the following:* add : (Compulsory -> title, body)\
Adds the note with the given title and the body
* remove : (Compulosry -> title)\
Removes the note with the given title
* read : (Compulsory -> title)\
Read the note(body) with the given title
* list : (Compulsory -> NOTHING)\
List all the note's title.