This page is part of a static HTML representation of the TiddlyWiki at https://tiddlywiki.com/

Uninstalling a plugin with Node.js

 17th June 2022 at 1:37pm

Follow these instructions when using TiddlyWiki with client-server Node.js configuration:

  1. Quit the server if it is running
  2. Edit the tiddlywiki.info file (it is in JSON format) and locate the plugins and themes section (see below)
  3. Remove the entries corresponding to the plugins you wish to remove
    • Take care to retain commas to separate items
    • Do not terminate the last item in a list with a comma
  4. Restart the server
{
	"plugins": [
		"tiddlywiki/codemirror"
	],
	"themes": [
		"tiddlywiki/vanilla",
		"tiddlywiki/snowwhite"
	]
}

Note
An overview of working with plugins can be found at Plugins