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.
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:
key: ${CI_COMMIT_REF_SLUG}
paths:
- .flow.saved_state
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