An open API service indexing awesome lists of open source software.

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

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
`