CLI Notetaker lets you write and save notes from the command line.
- Clone this Repo
git clone [email protected]:shellycs50/cli_notetaker.git
- Run npm install to get dependencies
npm install
- Run npm link to install.
npm link
- If you'd like to use another word, you can change it in package.json
{
"name": "cli_notetaker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"bin": {
"note": "./index.js" //change note to whichever word you would like to use
},
- Create a note (with optional tag flag)
# Make a new note
note new 'testnote'--tags 'This is a test, notetime!, 2023'