https://github.com/hackpoint/codeval
https://github.com/hackpoint/codeval
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hackpoint/codeval
- Owner: HackPoint
- License: mit
- Created: 2016-08-17T05:47:39.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-17T14:40:59.000Z (almost 10 years ago)
- Last Synced: 2025-12-01T12:17:00.841Z (7 months ago)
- Language: TypeScript
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# angular-typescript-webpack
Angular + Typescript + Webpack build with Karma and wallaby tests support.
And this all with sourcemaps in production support!!
### Install
```sh
npm i webpack typings typescript -g
git clone git@github.com/brechtbilliet/angular-typescript-webpack.git
cd angular-typescript-webpack
npm install
npm start
```
Then it will automatically open the app in your browser
To run tests
```sh
npm test
```
Coverage
```sh
open reports/coverage/index.html
```
Build
```sh
npm install
npm run build
```
### Features
- [x] Build basic Angular app with webpack
- [x] Simple twitter application
- [x] fully tested with Jasmine
- [x] sass support
- [x] Coverage report
- [x] Typescript support
- [x] ES6 modules support
- [x] Running tests in PhantomJS
- [x] Wallaby.js support
- [x] Karma support
- [x] Optimized build package
- [x] Minimal and straightforward setup
- [x] Watches code and refreshes browser with latest changes automatically
- [x] Sourcemap support in develop AND PRODUCTION!!! (don't deploy the js.map file with your application, but use it to debug your production app)