Skip to content

amarinov/flow-to-ts

This branch is 4 commits ahead of, 65 commits behind Khan/flow-to-ts:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

amarinovlautiskevinbarabash
Jan 3, 2020
79bd125 · Jan 3, 2020

History

95 Commits
Dec 12, 2019
Dec 12, 2019
Dec 19, 2019
Mar 24, 2019
May 19, 2019
Jan 2, 2020
Jan 2, 2020
Mar 30, 2019
Apr 1, 2019
May 19, 2019
Jan 2, 2020
Dec 12, 2019
Dec 19, 2019
May 7, 2019
Dec 19, 2019

Repository files navigation

flow-to-ts

Actions Status codecov

Convert Flow code to TypeScript.

The goal of this project is to provide a tool that can translate 95% of Flow to TypeScript while maintaining a high percentage of the existing type information. We don't want to convert code and end up with everything using any. We also want to avoid having to make a lot of manual changes to files afterwards, e.g. changing SyntheticEvent to React.Event.

Quick start

  • yarn global add @khanacademy/flow-to-ts
  • flow-to-ts [options] <file globs>

Playground

https://flow-to-ts.netlify.com

Principles

  • when exact translation isn't possible:
    • downgrade to any when possible and provide a gentle warning
    • when it isn't possible to downgrade (e.g. %checks), remove the syntax and provide a forceful warning that the code in question will need a human to convert it manually.
  • best effort to maintain blank lines and the position comments, this isn't always possible so warn in those situations where we can't, e.g. converting object type spreads to intersection types.

Contibuting

Bugs

Bug reports for converting Flow to TypeScript should include a link to the playground with an example of a minimal reproducible example of the bug.

Feature Requests

Feature requests are welcome.

Pull Requests

Please make sure there is a GitHub issue first before creating a pull request except for small things. Also, please sign our Contributor License Agreement.

Pull requests that fix a bug in the conversion code should include one or more test cases and should have 100% diff coverage.

Dev quick start

git clone git@github.com:Khan/flow-to-ts.git
cd flow-to-ts
yarn
yarn test

Helpful resources

About

Convert flow code to typescript

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 94.4%
  • TypeScript 5.4%
  • HTML 0.2%