tcoopman / flow-bin

Binary wrapper for Flow - a static type checker for JavaScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flow-bin Build Status

Binary wrapper for Flow - a static type checker for JavaScript

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

CLI

$ npm install --global flow-bin
$ flow --help

API

$ npm install --save flow-bin
var execFile = require('child_process').execFile;
var flow = require('flow-bin');

execFile(flow, ['check'], function (err, stdout, stderr) {
	console.log(stdout);
});

License

MIT © Sindre Sorhus

About

Binary wrapper for Flow - a static type checker for JavaScript

License:MIT License


Languages

Language:JavaScript 100.0%