https://github.com/govinddixit/notes
A Command line notes app created using javascript
https://github.com/govinddixit/notes
Last synced: 2 months ago
JSON representation
A Command line notes app created using javascript
- Host: GitHub
- URL: https://github.com/govinddixit/notes
- Owner: GOVINDDIXIT
- Created: 2018-10-29T17:29:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-15T16:07:49.000Z (about 6 years ago)
- Last Synced: 2025-01-28T18:37:36.579Z (4 months ago)
- Language: JavaScript
- Size: 799 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Notes
A basic Command line To do notes app created using Javascript.### To add a note
`
node app.js add -t "write title here" -b "write body here"
`
### To remove a note
`
node app.js remove -t "write title here"
`
### To read a note
`
node app.js read -t "write title here"
`
### To list all notes
`
node app.js list
`