mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-18 07:44:51 +00:00
9345078926
Previously, the command line interface required a wiki folder to be specified. This is part of the work to enable TiddlyWiki5 to be used more easily as a library in other node.js apps
14 lines
302 B
JavaScript
Executable File
14 lines
302 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").$tw;
|
|
|
|
// 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();
|