You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Download the example (or clone the whole project)[https://github.com/palmerhq/backpack.git]:
5
+
```bash
6
+
curl https://codeload.github.com/palmerhq/backpack/tar.gz/master | tar -xz --strip=2 backpack-master/examples/with-flowtype
7
+
cd with-flowtype
8
+
```
9
+
Install it and run:
10
+
```bash
11
+
npm install
12
+
npm run dev
13
+
```
14
+
15
+
## Idea behind the example
16
+
This demonstrates how to add [Flow](https://flowtype.org/) to your Backpack project. Flow is a static type checker that helps you write code
17
+
with fewer bugs. Check out this [introduction to using static types in JavaScript](https://medium.com/@preethikasireddy/why-use-static-types-in-javascript-part-1-8382da1e0adb) if you are new to this concept.
18
+
19
+
To learn more about Flow, take a look at [its documentation](https://flowtype.org/).
0 commit comments