zoottelkeeper v1.1.3
ZoottelKeeper: A Zookeeper for your Zettelkasten folder
What?
The main idea of Zettelkasten is the links that connect your notes. However, if you would like to organize your notes to folders, you have to set up and maintain an index Markdown file for each folder that contains all of the notes of the folder as links (wikilinks, internal md links etc.). Which means that if you move a file to an other folder, your have to remove its link from the index file of the source folder, and add a link to the index file of the target folder.
If you are struggling with the same problems (like me), ZoottelKeeper is your program. It watches your folder, catches the changes and updates your index files within every folder and subfolders automatically.
How does it work?
ZoottelKeeper watches the followings:
- Creation of files in rootFolder and any subfolders within
- Deletion of files in rootFolder and any subfolders within
- Move a file among rootFolder to subFolders
- Move a file among subfolders
After recognizing that one of these actions happened, it creates an index file within the affected (sub)folder if it still does not exist.
Its name is going to be 000Index_of\.md.
Then it writes the list of the files within that folder as wikistyled links.
Example
Assume that we have a Zettelkasten folder with 2 subfolders FolderA and FolderB.
If I create a note called
fileA.mdinFolderAthen ZoottelKeeper creates an index file withinFolderAcalled 000_Index_of_FolderA.md with content:If the file is being moved from
FolderAtoFolderB, 000_Index_of_FolderB.md is going to be created inFolderBwith contentand the content the existing index file in
FolderAis going to be updated by removing the link offileA:If fileA is being deleted from
FolderBthen its link is going to be removed from 000_Index_of_FolderB.md
Tryout
If you don't want to try it out directly on your notes, just type npm run start -- --rootFolder=./../testRootFolder and check how it works with a test Folder.
Usage
- clone or download ZottelKeeper
- install Node 10.18.1
- install the dependencies by running
npm iin the root folder - compile the code by
npm run build start it by
npm run start -- --rootFolder=./../<relative path to your Zettelkasten folder>(for instance, if you have a folder called
Notesand you placeZottelKeeperas a subfolder ofNotes, and yourZettelkastenis a subfolder in Notes as well, then your command should benpm run start -- --rootFolder=./../../ZettelKasten)
Stop
You can stop it by npm run stop