JSPM

flow-bin

0.5.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 481036
  • Score
    100M100P100Q173091F
  • License MIT

Binary wrapper for Flow - a static type checker for JavaScript

Package Exports

  • flow-bin
  • flow-bin/cli
  • flow-bin/package.json

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (flow-bin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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