terminal-notebook
v1.0.2
Published
mini obsidian ))
Readme
Terminal notebook
you can write your note from terminal
recomended install globally
npm i -g terminal-notebookCommands
setDir - set the directory where you want to hold your notes
options
-d or --directory- required options after enter path to directory
Examples:
trmd setDir -d D:/noteDir/
get - get the your directory path
Examples:
trmd get
n - crete new note
options
-c- content of the note-n- name of the note (optional)
Examples:
trmd n -c 'something content' # => created file with name 2025-01-06--21-13-04.mdtrmd n -c 'something content' -n 'text' # => created file with name text.mdls - list of your notes
Examples:
trmd ls
# text.md
# note.md
# ...r - read the note
Examples:
trmd r
# > text.md
# note.md
# ...
> something contentd - delete node
Examples:
trmd r
# > text.md
# note.md
# ...
> file deleted