The application written with React and Appolo client (GraphQL)
- Get started – How to launch application
- Development – Development notes
- Tests - Testing notes
You’ll need to have Node >= 6 on your machine
- Clone the repository
git clone https://github.com/ZakharDolozhevskiy/crud-with-graphql.git
- Install dependencies
npm install
- Run the app in development mode
npm start
- Open http://localhost:3000 to view it in the browser.
All development dependencies and used script described here
npm start
- run application in development mode with live reloading and dev warnings in consolenpm test
- run tests (patterns: *.test.js, tests folder)npm build
- create production ready build
React components covered with unit tests. Snapshots created for reusable components and components with GraphQL queries and mutations tested as one group.