A react app all about ideation.
📏 React 🦄 Babel 🐣 CSS modules 🤷♂️ Jest 🕶 Enzyme
- Node.js v8.3.0+
- Node package manager v5.3.0+
- Run
npm install
To start debugging run npm run debug
, this will start a debug development server at http://localhost:9001.
To build the web application run npm run build
, this will generate a static version of the web application in the directory dist
.
Note that you must expose an API BASE URL via the environmental variable API_BASE_URL
In example npx cross-env API_BASE_URL=https://my.api
To lint the source code run npm run lint
, this will report any linting issues, to unit test the source code run npm run unit
, this will report any unit test failures and source coverage.
To run all tests run npm test