0.1.0 • Published 8 years ago

jsonnet-exec v0.1.0

Weekly downloads
3
License
-
Repository
github
Last release
8 years ago

jsonnet-exec

A nodejs child_process.exec and child_process.execSync wrapper for jsonnet cmdline tool

var jsonnetExec = require('jsonnet-exec');

jsonnetExec.exec("/path/to/file.jsonnet", function(error, stdout, stderror) {
    if (!error) {
        console.log(stdout);
    }
});

var stdout = jsonnetExec.execSync("-e '{ x: 1 , y: self.x + 1 } { x: 10 }'");
console.log stdout.toString();