@kiwicom/flow-bin

0.6.0 • Public • Published

This package is WIP and you should use it only when you know what are you doing.

Custom wrapper around Flow-bin with some additional default configuration tailored for our needs. Notable this package does typechecking with:

Usage

yarn add --dev flow-bin @kiwicom/flow-bin

To start using it, add the following lines to you .gitignore file:

.flow.saved_state
.flow.saved_state_file_changes

And run the following command: yarn run kiwicom-flow-bin

$ kiwicom-flow-bin [restart] [--all]

      restart    Restarts Flow server.
      --all      Does complete check without any optimizations.

This will start the server in lazy mode and create a saved state if there are no errors. You should see the effect when you stop the Flow server and run this command again - it should be significantly faster. Please be aware that we currently support only projects with master branch as a base. You have to follow Universe conventions to be able to use it reliably.

There is also experimental kiwicom-flow-migrate binary which will help you to migrate the whole codebase. We currently support two projects:

  • automatic migration to strict lint (@flow strict)
  • automatic migration to "types-first" architecture

Use it only when you understand what's going on.

Recommended CI configuration (GitLab)

flow:
  stage: test
  image: node:$NODEJS_VERSION
  tags: [high-performance]
  script:
    - yarn install --offline --frozen-lockfile
    - yarn run kiwicom-flow-bin
  cache:
    # Ideally, we'd cache the saved state only on master and reuse it in other jobs. We should also
    # reuse only one runner to ensure maximum availability of the cache (see: https://docs.gitlab.com/ee/ci/caching/#good-caching-practices).
    # Note: do not cache per CI_JOB_NAME! It's because some branches can introduce new files into
    # saved state which won't be available in other branches (Flow will fail on missing file).
    key: flow-${CI_COMMIT_REF_SLUG}
    paths:
      - .flow.saved_state

If you utilize global cache with node_modules, extend it with .flow.saved_state:

cache:
  key: ${CI_COMMIT_REF_SLUG}
  paths:
    - node_modules/
    - .flow.saved_state

flow:
  # ...
  script:
    - yarn run kiwicom-flow-bin

Technical details

Complete re-check (restart --all) will take a long time. We run many optimizations by default. Notably we are running Flow in Lazy Mode and we are trying to re-use Saved State when possible. Lazy Mode and Saved State are currently not configurable from outside since it should not be needed. Here are some approximate example timings (on 12356 relevant files):

yarn kiwicom-flow-bin (first run)      ~13s      (cold start, lazy mode, no saved state) ❌
yarn kiwicom-flow-bin (second run)     ~3s       (hot start, lazy mode, saved state) ✅
yarn kiwicom-flow-bin restart          ~8s       (cold start, lazy mode, saved state) ❌
yarn kiwicom-flow-bin restart --all    ~22s      (cold start, no lazy mode, no saved state) ❌
./node_modules/.bin/flow               ~0.14s    (just consulting already running and optimized server)

Please note: these times are still significantly affected by Babel transpilation process as well as the fact that we sometimes do more things than necessary (server shutdown, force recheck, save state). The best performing setup for local development is currently this:

yarn kiwicom-flow-bin    (this will start server and set all optimizations)
yarn flow                (this runs Flow directly on already optimized server)

Additional resources

Readme

Keywords

none

Package Sidebar

Install

npm i @kiwicom/flow-bin

Weekly Downloads

0

Version

0.6.0

License

MIT

Unpacked Size

31.9 kB

Total Files

27

Last publish

Collaborators

  • mvidalgarcia
  • dsil
  • jakubzaba
  • robincsl_kiwi
  • kiwicom.platform
  • dinodsaurus