Group Manager client side application for self managing groups
- Node.js 8+
- Npm 5+
$ npm install
- Installs all dependencies.$ npm start
- Run application in development mode against Topcoder development environment using dev config. In this case the frontend is build in memory by webpack server and uses dev tools like redux-logger.
Open browser with URL http://localhost:3001.
$ npm start
- Run application in development mode against Topcoder development environment. In this case the frontend is build in memory by webpack server and uses dev tools like redux-logger.$ npm build
- Create build for production in/dest
folder. In this case built app is configured to run against Topcoder production environment using prod config. Files are being minimized andgzipped
.$ npm run lint
- Check js code linting.$ npm run lint:fix
- Check js code linting and trying to fix errors automatically.$ npm run test
- Performs tests running. Note we don't really have tests, so we only keep this command run successfully.$ npm run test:watch
- Performs tests on files changes.