Package depracated, use instead webpack-typescript-react-redux
Hello world simple page application.
TypeScript - compile to ES5
Stylus - css preprocessor
React Reflux
Webpack - build manager
Karma - unit tests runner
Jasmine - unit tests library
Typings - DefinitelyTyped libs manager
tslint, stylint - TypeScript and Stylus code validation
Gulp for run linters
Only for Node.js 4+
npm install
Run http server + watcher
npm start
Open in your browser
http://localhost:8080/
http://localhost:8080/webpack-dev-server/ with live reload
Run unit test. (Single run with PhantomJS)
npm test
Debugging unit test. Watch with Chrome
npm run test:dev
Compile build. (Are put into ./build folder)
npm run build
Check TypsScript and Stylus code validation
npm run lint
On pre-commit set up hook for checking modified/added files by linter
On pre-push run unit tests