An open API service indexing awesome lists of open source software.

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

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/)