A small React starter kit using common technologies (Enzyme, ESLint, Flow, Jest, Styled-Components).
git clone https://github.com/rchinerman/enzest.git && cd enzest
To install the dependencies from package.json:
yarn install
To install all third-party library interface definitions assocated with the dependencies listed in package.json for use with Flow, first ensure the flow-typed tool is installed:
yarn global add flow-typed
Then, install all definitions listed within package.json:
flow-typed install
To use Jest and Enzyme to test code functionality:
yarn test
To use Flow to look for type errors:
yarn run flow
To use ESLint to test for code styling issues:
yarn lint
It's easier and more practical to use a text editor with extension support for Flow testing and ESLint.
- Ryan Hinerman - rchinerman
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details