Skip to content

gh-aam/note-taker-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

note-taker-cli

A simple and intuitive command-line note-taking app built with Node.js.

Installation

npm install -g note-taker-cli

Usage

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.json file.