flow-typed
is a repository of third-party
library interface definitions
for use with Flow.
You can grab definitions directly from this GitHub repo, or you can use the CLI (currently in beta) to install a libdef for a given library:
$ yarn global add flow-typed
$ cd /path/to/my/project
$ yarn install
$ flow-typed install rxjs@5.0.x
'rxjs_v5.0.x.js' installed at /path/to/my/project/flow-typed/npm/rxjs_v5.0.xjs
When you start a project with Flow, you likely want to use some third-party libraries that were not written with Flow. By default, Flow will just ignore these libraries leaving them untyped. As a result, Flow can't give errors if you accidentally mis-use the library (nor will it be able to auto-complete the library).
To address this, Flow supports library definitions which allow you to describe the interface of a module or library separate from the implementation of that module/library.
The flow-typed
repo is a collection of high-quality library definitions,
tests to ensure that definitions remain high quality, and tooling to make it
as easy as possible to import them into your project.
All you have to do when you add one or more new dependencies to your project
is run flow-typed install
. This will search the libdef repo and download all
the libdefs that are relevant for your project and install them for you. After
that, simply check them in and be on your way!
Check out Importing And Using Type Definitions in the wiki. It will walk you through using typedefs installed through flow-typed, as well as writing and including your own.
Before opening an issue, take a look at the FAQs. Chances are your question has already been answered! If not, don't hesitate to open an issue.
Just send a pull request! The wiki on Contributing Library Definitions details the format of new contributions. Contributions should follow the best practices outline on CONTRIBUTING.md.
Bugfixes and improvements to the core CLI are welcome. If you'd like to contribute a new feature, consider opening an issue first to discuss it.
The flow-typed
npm package provides a CLI that includes several commands for
working with this repository. The full list of commands is available at
CLI Commands & Flags.
Installs libdefs from looking at your package.json.
If package-specification
was specified, only that one libdef will be installed.
If the --ignoreDeps
flag was specified, the libdefs for the specified deps will be ignored. i.e: --ignoreDeps dev bundle peer
.
flow-typed install foo@1.2.3
Verifies that all files under the /definitions/
directory are structured and
named properly. It does not run tests, it only asserts that file and
directory names match the expected conventions.
This command is run during CI.
For each libdef, find each test and run it with all compatible versions of Flow.
If any errors arise that are not // $ExpectError
, the test has failed.
Note that this command assumes that the /definitions/
directory is correctly
structured. It should be run after running flow-typed validate-defs
.
By default flow-typed retrieves all available libdefs from its related upstream repository. To make this process more efficient, those libdefs are cached once on your local filesystem. Usually, the cache will automatically be updated after a short grace period during a libdef installation, but sometimes it is useful to do this update manually. Use this command if you want to download the most recent definitions into the cache for yourself.