title: BootMechanism tags: docs mechanism !Introduction TiddlyWiki5 is based on a 600-line boot kernel that runs on node.js or in the browser, with all other functionality dynamically loaded as plugins. The kernel boots just enough of the TiddlyWiki environment to allow it to load tiddlers and execute JavaScript modules. Plugin modules are written like `node.js` modules. There are many different types of module: parsers, serializers, deserializers, macros etc. It goes much further than you might expect. For example, individual tiddler fields are modules, too: there's a module that knows how to handle the `tags` field, and another that knows how to handle the special behaviour of the `modified` and `created` fields. Some plugin modules have further sub-plugins: the wikitext parser, for instance, accepts rules as individual plugin modules. !Plugins and Modules In TiddlyWiki5, "plugins" are bundles of tiddlers that are distributed and managed as one; "modules" are JavaScript tiddlers with a module type identifying when and how they should be executed. The tiddler [[$:/core/boot.js]] is a barebones TiddlyWiki kernel that is just sufficient to load the core plugin modules and trigger a startup plugin module to load up the rest of the application. The kernel includes: * Eight short shared utility functions * Three methods implementing the plugin module mechanism * The `$tw.Tiddler` class (and three field definition plugins) * The `$tw.Wiki` class (and three tiddler deserialization methods) * Code for the browser to load tiddlers from the HTML DOM * Code for the server to load tiddlers from the file system Each module is an ordinary `node.js`-style module, using the `require()` function to access other modules and the `exports` global to return JavaScript values. The boot kernel smooths over the differences between `node.js` and the browser, allowing the same plugin modules to execute in both environments. In the browser, `core/boot.js` is packed into a template HTML file that contains the following elements in order: * Ordinary and shadow tiddlers, packed as HTML `
` elements * `core/bootprefix.js`, containing a few lines to set up the plugin environment * Plugin JavaScript modules, packed as HTML `