unassert-cli
v1.0.0
Published
CLI for unassert: encourage reliable programming by writing assertions in production code, and compiling them away from release
Readme
unassert-cli
CLI for unassert. Provides unassert command which compiles assertions away from target file.
RELATED MODULES
- unassert: Encourage reliable programming by writing assertions in production code, and compiling them away from release.
- unassertify: Browserify transform for unassert
- babel-plugin-unassert: Babel plugin for unassert
- webpack-unassert-loader: Webpack loader for unassert
- gulp-unassert: Gulp plugin for unassert
CHANGELOG
See CHANGELOG
EXAMPLE
For given math.js below,
'use strict';
var assert = require('assert');
function add (a, b) {
console.assert(typeof a === 'number');
assert(!isNaN(a));
assert.equal(typeof b, 'number');
assert.ok(!isNaN(b));
return a + b;
}Install unassert command, run it and redirect its output into file.
$ npm install -g unassert-cli
$ unassert /path/to/src/math.js > /path/to/dist/math.jsThen you will see assert calls in /path/to/dist/math.js disappear.
'use strict';
function add(a, b) {
return a + b;
}See unassert project for more documentation.
INSTALL
via npm
Install globally,
$ npm install -g unassert-cliand/or locally.
$ npm install --save-dev unassert-cliUSAGE
$ unassert /path/to/src/target.js > /path/to/build/target.js$ cat /path/to/src/target.js | unassert > /path/to/build/target.jsOUR SUPPORT POLICY
We support Node under maintenance. In other words, we stop supporting old Node version when their maintenance ends.
This means that any other environment is not supported.
NOTE: If unassert-cli works in any of the unsupported environments, it is purely coincidental and has no bearing on future compatibility. Use at your own risk.
AUTHOR
LICENSE
Licensed under the MIT license.
