The story
When working with TiddlyWiki on Node.js, the tiddlywiki.info contains two essential plugins
"plugins": [
"tiddlywiki/filesystem",
"tiddlywiki/tiddlyweb",
Assume, you did not add the above plugins to your tiddlywiki.info, and from the shell, using different commands and JS script, you create a few tiddlers. No browser, no TiddlyWiki opened, everything from Shell/Terminal/Console.
I use this method for creating config and state tiddlers on the fly and after finishing the job, I use build to create my final TiddlyWiki. Everything works great!
The questions
- Where are those config tiddlers? Nothing is saved on the disk?
- Do you recommend such methods?