- using ES2016 (generators/async/await) then transpiled to ES5 cross-browser compatible code
- development server with hot-reload for quick development loop
- static dev-bundle for quick full-page reload
- automatic build of optimized production package and deployment:
npm run bd
- unit test with simple test runner in TypeScript
- typescript node support using ts-node
- git hooks running linter before commit and tests before push
- editorconfig and tslint as code linter
- TypeScript - v1.8.10
- React - v15.1.0
- MobX - v2.3.1 / mobx-react
- JSPM (0.17.X) / SystemJS / systemjs-hot-reloader
git clone https://github.com/piotrwitek/training-management-tool.git
npm install
npm start
npm start
- run local development server with hot-reloader at localhost:8888npm test
- run testsnpm run lint
- run code linternpm run dev-bundle
- build & inject dev-bundle with all dependencies to index.html for faster page reloadnpm run dev-unbundle
- remove injected dev-bundlenpm run build
- build production deployment package (minified)npm run build-debug
- build debug deployment package (source maps)npm run init-deploy
- init deployment repositorynpm run deploy
- commit to deployment repository & push to remotenpm run bd
- automatic build and deployment
- guide to sync fork (don't merge to keep a history clean): http://stackoverflow.com/questions/7244321/how-do-i-update-a-github-forked-repository
- local demo page: localhost:8888/dist
- use JSPM beta ->
jspm@0.17.X
- follow BEM conventions: https://en.bem.info/methodology/naming-convention/
- Piotr @piotrwitek
- Seba @PanRada
- Bartosz @migacz1125
- PouchDB as persistence layer for stores
- editorconfig.org setup