The official balena CLI tool.
Go to file
2015-03-19 15:57:43 -04:00
bin Stop bundling NodeJS in the package 2015-03-04 12:16:35 -04:00
build Reimplement whoami command 2015-03-19 15:57:43 -04:00
completion Update sh completion with new commands 2015-02-09 10:00:16 -04:00
doc HTML Encode documentation require parameters 2015-03-16 08:51:26 -04:00
extras/capitano-doc HTML Encode documentation require parameters 2015-03-16 08:51:26 -04:00
lib Reimplement whoami command 2015-03-19 15:57:43 -04:00
man Increment man page month 2015-03-02 10:40:43 -04:00
scripts Implement basic documentation generation mechanism 2015-03-03 11:32:24 -04:00
tests Move tests to tests/ and flatten errors/ module directory 2015-02-10 11:38:19 -04:00
.editorconfig Add editorconfig 2014-10-31 09:49:57 -04:00
.gitignore Remove useless npm-shrinkwrap.json 2015-03-02 12:27:30 -04:00
.travis.yml Add .travis.yml 2015-03-02 12:39:05 -04:00
coffeelint.json Add Coffeelint support 2014-10-31 09:48:53 -04:00
gulpfile.coffee Reference JavaScript version of install-node script 2015-02-26 11:50:21 -04:00
LICENSE Add LICENSE file 2015-03-05 15:43:39 -04:00
package.json Reimplement whoami command 2015-03-19 15:57:43 -04:00
README.md Stop bundling NodeJS in the package 2015-03-04 12:16:35 -04:00

Resin CLI

npm version dependencies Build Status

The official Resin CLI tool.

Installing

$ npm install -g resin-cli

Running locally

$ ./bin/resin

Tests

You can run the Mocha test suite, you can do:

$ gulp test

Development mode

The following command will watch for any changes and will run a linter and the whole test suite:

$ gulp watch

If you set DEBUG environment variable, errors will print with a stack trace:

$ DEBUG=true resin ...

Documentation

You can renegerate the documentation with:

$ npm run-script doc

Manual pages

UNIX manual pages reside in man/

You can regenerate UNIX roff manual pages from markdown with:

$ gulp man

If you add a new man page, remember to add the generated filename to the man array in package.json.

Caveats