0.9.0 • Published 8 years ago
pkgeval v0.9.0
pkgeval 0.9.0
One configuration to rule them all
.
pkgcfg tag to evaluate Javascript expressions.
.
Installation
npm install --save pkgevalRegistration
The eval{} tag from pkgeval will be auto-discovered by pkgcfg because it follows
the package naming convention. You can also register it explicitly by adding 'eval'
to the array of pkgcfg tags in package.json. See the pkgcfg docs on
using external tags
for more information.
Usage
package.json:
{
"eval": "eval{3 > 5}",
"evalIndirect": "eval{${data} > 5}",
"data": "8",
}Then, read your package.json with pkgcfg:
var cfg = require('pkgcfg')();
console.info(cfg.test.eval) // false
console.info(cfg.test.evalIndirect); // trueeval{expr}
Evaluate Javascript expressions.
expr
Required String. The expression to evaluate.
Issues
Add an issue in this project's issue tracker to let me know of any problems you find, or questions you may have.
Copyright
Copyright 2016 by Stijn de Witt. Some rights reserved.