Development tool set for apps built on basis.js framework.
Getting Started
Install
> npm install basisjs-toolsOr install it globally (prefered):
> npm install -g basisjs-toolsAfter that basis command should be available in command line.
basis.config
basisjs-tools tries to find and use basis.config file by default. This file should contains base settings for commands. For more details see basisjs-tools-config readme.
Tools
Commands provided:
completion– output completion script for *nix systemsconfig [name] [value]– global configurationcreate– code generatorserver– launch dev-serverbuild [fileOrPreset]– make a build of appextract [file]– extract app profilefind <reference>– resolve filename by referencelint [fileOrPreset]– lint source code and output report
completion
Completion command that is based on, and works similarly to the npm completion. It is not available for Windows users.
This command will output a Bash / ZSH script to put into your ~/.bashrc, ~/.bash_profile, or ~/.zshrc file.
> basis completion >> ~/.bash_profile
> source ~/.bash_profileconfig
With config command you could set some setting. Those settings are primary user preference but not a project settings, and always override by options if any.
At this moment only setting are supported – editor. This setting sets command to open some filename in editor. For example, you could set Sublime Text as editor to open files in:
// command `subl` is available in console
> basis config editor subl
// if not, you could specify absolute path to `Sublime Text` on `Mac OS`
> basis config editor '/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl'If command run without arguments all current settings are listing.
create
create command helps generate code. As example, to create default application file structure, run command:
> basis create app myappCommand creating directory myapp and other directories and files by default app template.
server
server command launch lightweight http development server:
> basis serverBy default current folder becomes server root (you can change it using --base option). You also can set listening port with --port option on command run or define it in config (useful when launch several servers). By default server listen port 8000.
> basis server -p 8123
Server run at http://localhost:8123Server caches files you access to and inject it into html page (via window.__resources__). This approach speeds up page loading with many files.
Also it watches for files changes and send new file content to client if neccessary (using socket.io and basis.js infrastructure). When you use this server you usually don't need to refresh page when you change .tmpl, .css, .json or .l10n files.
build
This command makes a build of your app:
> basis buildBuilder search for index.html file (but use could use --file option to specify file or define it in config) and use it as start point. It scan file contents and search for linked files, processing it and put result in build folder (could be changed by --output option). As a result you get all used by application files in one folder.
Optionally builder may merge, optimize, compress sources etc.
See more details in basisjs-tools-build repository.
extract
Actually this command runs as first step of build and lint commands. It collect all useful information about app (app profile) and returns it as json.
> basis extractMost options are the same as build command.
See more details in basisjs-tools-build repository.
lint
Output warnings from app profile as report. It supports several formats of output (reporters).
> basis lint
Warnings (2):
/src/module/example/index.js
* Defined but never used: missed
/src/module/example/template/foo.tmpl
* No style rules for: .mistakeSupported reporters:
console(by default) - outputs warnings as plain text list (see example above)checkstyle- report in checkstyle formatjunit- report in JUnit format
See more details in basisjs-tools-build repository.
find
Resolve file reference to absolute file path. It uses basis.js included by app (if available) with it's config.
> basis find basis:ui/popup.js
/path/to/app/node_modules/basisjs/src/basis/ui/popup.jsSee more details in basisjs-tools-build repository.
License
MIT License.