0.6.0 • Published 6 years ago

infer-bin v0.6.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

infer-bin Build Status

Binary wrapper for Infer - A static analyzer for Java, C and Objective-C

Only macOS and Linux (64-bit) binaries are currently provided.

CLI

$ npm install --global infer-bin
$ infer

API

$ npm install --save infer-bin
const execFile = require('child_process').execFile;
const infer = require('infer-bin');

execFile(infer, ['--version'], (err, stdout) => {
	console.log(stdout);
});

License

MIT © Sindre Sorhus