tree: c031722a03482c4eb9eafc9ea524ad001a9df0ed [path history] [tgz]
  1. auxiliary/
  2. auxiliary_tests/
  3. examples/
  4. hack/
  5. lib/
  6. resources/
  7. src/
  8. tests/
  9. .flowconfig
  10. .gitignore
  11. .travis-ci.sh
  12. .travis.yml
  13. _tags
  14. Changelog.md
  15. CONTRIBUTING.md
  16. flow-types.el
  17. LICENSE
  18. Makefile
  19. PATENTS
  20. README.google
  21. README.md
  22. runtests.sh
third_party/flow/README.md

Flow

Flow is a static typechecker for JavaScript. To find out more about Flow, check out flowtype.org.

For a background on the project, please read our launch blog post.

Requirements

Flow works with:

  • Mac OS X
  • Linux (64-bit)

There are binary distributions for Mac OS X and many variants of Linux; you can also build it from source on almost any 64-bit Linux variant.

Building Flow

Flow is written in OCaml (OCaml 4.01.0 or higher is required) and (on Linux) requires libelf. You can install OCaml on Mac OS X and Linux by following the instructions at ocaml.org.

Once you have these dependencies, building Flow just requires running

make

This produces a bin folder containing the flow binary.

Note: at this time, the OCaml dependency prevents us from adding Flow to npm. Try flow-bin if you need a npm binary wrapper.

Running the tests

To run the tests first compile flow using make. Then run bash ./runtests.sh bin/flow

There is a make test target that compiles and runs tests.

To run a subset of the tests you can pass a second argument to the runtests.sh file.

For example: bash runtests.sh bin/flow class | grep -v 'Skipping directory'

Installing Flow

Flow is simple to install: all you need is the flow binary on your PATH and you're good to go.

Using OPAM

You can also build and install flow via the OCaml OPAM package manager with one command:

opam install flowtype

If you don't have a new enough version of OCaml to compile Flow, you can also use OPAM to bootstrap a modern version. Install OPAM via the binary packages for your operating system and run:

opam init --comp=4.01.0
opam install flowtype
eval `opam config env`
flow --help

Documentation

Check out http://flowtype.org for documentation and examples.

Join the Flow community

  • Website: http://flowtype.org/
  • irc: #flowtype on Freenode
  • Twitter: @flowtype and #flowtype to keep up with the latest Flow news.

License

Flow is BSD-licensed. We also provide an additional patent grant.