mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
14 lines
311 B
JavaScript
Executable File
14 lines
311 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
/*
|
|
This is invoked as a shell script by NPM when the `tiddlywiki` command is typed
|
|
*/
|
|
|
|
var $tw = require("./boot/boot.js").TiddlyWiki();
|
|
|
|
// Pass the command line arguments to the boot kernel
|
|
$tw.boot.argv = Array.prototype.slice.call(process.argv,2);
|
|
|
|
// Boot the TW5 app
|
|
$tw.boot.boot();
|