https://github.com/pharoouzy/console-notes-app
Add notes (title and body) to a JSON file via console/terminal. Written in NodeJS
https://github.com/pharoouzy/console-notes-app
console-application javascript loadash nodejs noteapp
Last synced: 8 months ago
JSON representation
Add notes (title and body) to a JSON file via console/terminal. Written in NodeJS
- Host: GitHub
- URL: https://github.com/pharoouzy/console-notes-app
- Owner: Pharoouzy
- Created: 2018-03-23T18:11:42.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-07-16T14:09:16.000Z (almost 6 years ago)
- Last Synced: 2025-01-07T06:47:41.517Z (over 1 year ago)
- Topics: console-application, javascript, loadash, nodejs, noteapp
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Console Notes Application
Take notes (title and body) with JSON file via console/terminal. This app is basically written with NodeJS
## Add new Note
**node app.js add -t "Title of the note goes here" -b "body/content of the note goes here"**
## List All Notes
**node app.js list**
## Read a note
**node app.js read -t "Title of the note"**
## Delete a note
**node app.js remove -t "Title of the note"**