https://github.com/akunzai/angular-boilerplate
Angular boilerplate to kick-start new project
https://github.com/akunzai/angular-boilerplate
angular boilerplate
Last synced: 3 months ago
JSON representation
Angular boilerplate to kick-start new project
- Host: GitHub
- URL: https://github.com/akunzai/angular-boilerplate
- Owner: akunzai
- License: mit
- Created: 2016-05-04T09:03:11.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2026-01-01T19:00:45.000Z (3 months ago)
- Last Synced: 2026-01-06T07:27:43.906Z (3 months ago)
- Topics: angular, boilerplate
- Language: TypeScript
- Homepage:
- Size: 11 MB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My Angular Boilerplate
[![Build Status][build-badge]][build] [![Code Coverage][codecov-badge]][codecov]
[build]: https://github.com/akunzai/angular-boilerplate/actions/workflows/build.yml
[build-badge]: https://github.com/akunzai/angular-boilerplate/actions/workflows/build.yml/badge.svg
[codecov]: https://codecov.io/gh/akunzai/angular-boilerplate
[codecov-badge]: https://codecov.io/gh/akunzai/angular-boilerplate/branch/main/graph/badge.svg?token=YXI83KW11M
[Angular](http://angular.io/) boilerplate to kick-start new project with CSS + Bootstrap
## Requirement
- [Node.js](https://nodejs.org)
- [pnpm](https://pnpm.io/)
- [Angular CLI](https://angular.io/cli)
## Getting Started
```sh
# activate the pnpm package manager
corepack enable
# install npm packages
pnpm install
# watch and serve a dev server at http://localhost:4200/
pnpm start
# Running unit tests
pnpm test
# build the project in production mode. The build artifacts will be stored in the `dist/` directory
pnpm build
# extracts i18n messages from source code
pnpm i18n:extract
```
## Reference
- [Angular ESLint](https://github.com/angular-eslint/angular-eslint)
- [Angular i18n Library - ngx-translate](https://github.com/ngx-translate/core)
- [Angular Testing Library](https://testing-library.com/docs/angular-testing-library/intro/)
- [Mock Service Worker](https://mswjs.io/docs/)
- [Vitest](https://vitest.dev/)