A simple and intuitive command-line note-taking app built with Node.js.
npm install -g note-taker-cliYou 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"- 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.