note-taker-cli
v1.1.2
Published
A simple note-taking CLI tool built with Node.js.
Downloads
17
Readme
note-taker-cli
A simple and intuitive command-line note-taking app built with Node.js.
Installation
npm install -g note-taker-cliUsage
You can use the CLI with the note command after global installation.
- Add a note
note add --title="Shopping List" --body="Buy milk and eggs"- Or add (a note) with aliases
note add -t "Shopping List" -b "Buy milk and eggs"- Remove a note
note remove --title="Shopping List"- Remove all notes
note clear-all- List all notes
note list- Read a note
note read --title="Shopping List"Features
- Create, read, list, delete, and delete all notes.
- Input validation for all the commands.
- Colored output.
- CLI built using
yargs. - Data stored in a local
notes.jsonfile.
