A minimal, interactive note-taking tool for the terminal.
npm install --global notely-cliRequirements: Node.js ≥ 16
notely-cli [flag] [id]
| Flag | Shorthand | Description |
|---|---|---|
--create |
-c |
Create a new note |
--read |
-r |
List all notes |
--read <id> |
-r <id> |
Read a specific note |
--update |
-u |
Update a note |
--delete <id> |
-d <id> |
Delete a note by ID |
--delete all |
-d all |
Delete all notes |
Create a note
notely-cli --create
notely-cli -cList all notes
notely-cli --read
notely-cli -rRead a specific note
notely-cli --read fc4c754d4
notely-cli -r fc4c754d4Update a note
notely-cli --update
notely-cli -uDelete a note
notely-cli --delete fc4c754d4
notely-cli -d fc4c754d4Delete all notes
notely-cli --delete all
notely-cli -d all- Notes are stored locally in
db.jsonin the working directory. - Title limit: 50 characters
- Content limit: 300 characters