This readme will assume that the reader has already setup a working
node/react development environment. Node ~8.10.0
is required,
installable via nvm or any other node version manager.
Yarn is a package manager which is considered by many to be faster and more secure than npm. Running the installation script is the easiest way to add it to your system:
curl -o- -L https://yarnpkg.com/install.sh | bash
Windows users can install here.
While we believe case sensitive file names have been eliminated, it may be needed for OS X users to tell git to ignore cases:
git config core.ignorecase true
Navigate to your IRIS directory, then yarn install
will install dependencies
The best way to get started is to run yarn start
, which will start a server using poijs and webpack to watch for file changes and perform linting and compiling automagically.
IRIS uses ESLint to help enforce a slightly modified AirBNB coding style, described in the eslintConfig section of the package.json file. Whenever you run yarn test
, linting will happen and you may see some errors or warnings to correct.
If you're on the correct version of node, you can use npx eslint src
from the command line to lint too.
Each component should ideally have a <comp>.spec.jsx
test file, we use Jest and Enzyme to test, but the syntax is very similar to Mocha. More info on Jest can be found here.
Step 1: Read this.
Step 2: yarn test
IRIS has two main components: an API and a separate front-end. The API is written using Express and run on Node, and a different Express server provides the React frontend to users.
Thanks for your support! IRIS is starting to build in complexity so the more people contributing the better. To make everyone's lives easier we have some coding standards to stick to.