41
🚀 Angular 13 Starter with ESLint, Material, Transloco, Jest, TestCafe, Docker & Prettier 🚀
Angular 13 Starter with Material, Transloco, Jest, Compodoc, Docker Support, ESLint & Prettier
Project
You can find the project here:
✅ Angular 13
✅ Angular Material
✅ Unit Testing with Jest
✅ End-to-End Testing with TestCafé
✅ Internationalization with Transloco
✅ Auto documentation with Compodoc
✅ Analyse your project with webpack-bundle-analyzer
✅ Docker
✅ ESLint
✅ Prettier
✅ Commit Linting
✅ Angular Material
✅ Unit Testing with Jest
✅ End-to-End Testing with TestCafé
✅ Internationalization with Transloco
✅ Auto documentation with Compodoc
✅ Analyse your project with webpack-bundle-analyzer
✅ Docker
✅ ESLint
✅ Prettier
✅ Commit Linting

# Clone the project
$ git clone https://github.com/wlucha/angular-starter
$ cd angular-starter
# Install dependencies
$ npm install
# Start server
$ npm run start
# Open in browser: http://localhost:4200
# Build Docker image
$ docker build . -t angular-starter
# Run Docker Container
$ docker run -p 3000:80 angular-starter
npm run start
- start the appnpm run lint
- lint the projectnpm run test
- run unit testsnpm run build
- build the projectnpm run build:prod
- build the project in production modenpm run build:prod:stats
- build the project in product mode with statsnpm run analyse
- analyse bundle with webpack-bundle-analyzer
npm run compodoc
- generate compodoc documentationnpm run changelog
- generate changelognpm run prettier
- format the whole project41