├── .gitignore ├── README.md ├── api.js ├── fileIo.js ├── modules ├── commands.js ├── error.js ├── execute.js ├── group.js ├── help.js ├── list.js └── print.js ├── package.json ├── scripts └── preuninstall.js └── web /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | store.json 3 | local.txt 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandennis/WebLauncher/HEAD/README.md -------------------------------------------------------------------------------- /api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandennis/WebLauncher/HEAD/api.js -------------------------------------------------------------------------------- /fileIo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandennis/WebLauncher/HEAD/fileIo.js -------------------------------------------------------------------------------- /modules/commands.js: -------------------------------------------------------------------------------- 1 | module.exports = () => 2 2 | -------------------------------------------------------------------------------- /modules/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandennis/WebLauncher/HEAD/modules/error.js -------------------------------------------------------------------------------- /modules/execute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandennis/WebLauncher/HEAD/modules/execute.js -------------------------------------------------------------------------------- /modules/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandennis/WebLauncher/HEAD/modules/group.js -------------------------------------------------------------------------------- /modules/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandennis/WebLauncher/HEAD/modules/help.js -------------------------------------------------------------------------------- /modules/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandennis/WebLauncher/HEAD/modules/list.js -------------------------------------------------------------------------------- /modules/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandennis/WebLauncher/HEAD/modules/print.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandennis/WebLauncher/HEAD/package.json -------------------------------------------------------------------------------- /scripts/preuninstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandennis/WebLauncher/HEAD/scripts/preuninstall.js -------------------------------------------------------------------------------- /web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandennis/WebLauncher/HEAD/web --------------------------------------------------------------------------------