mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-02-01 23:47:35 +00:00
This is the start of making it possible to use TiddlyWiki5 as a library from a node.js application
11 lines
190 B
JavaScript
Executable File
11 lines
190 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
/*
|
|
This is invoked as a shell script by NPM when the `tiddlywiki` command is typed
|
|
*/
|
|
|
|
var tiddlywiki = require("./boot/boot.js");
|
|
|
|
// Boot the TW5 app
|
|
$tw.boot.boot();
|