A ready-to-use Angular template library with essential tools pre-configured. Start building your Angular app with minimal setup!
- Angular Framework: Pre-configured with Angular.
- Prettier: Code formatter for consistent style.
- Jest: Unit testing framework.
- Husky: Git hooks for quality checks.
- ESLint: Linter for catching and fixing issues.
git clone https://github.com/your-username/angular-template-library.git
cd angular-template-library
npm install
npm start
The app will be available at http://localhost:4200/
.
- Start the development server:
npm start
- Format code with Prettier:
npm run pretty-quick
- Lint code with ESLint:
npm run lint
- Run unit tests with Jest:
npm run test
- Pre-commit hooks (Husky): Automatically runs linting and testing before committing changes.
- Build the project for production:
The output will be available in the
npm run build
dist/
folder.
- Fork the repository.
- Create a new branch:
git checkout -b feature-branch-name
. - Commit your changes:
git commit -m 'Add some feature'
. - Push to the branch:
git push origin feature-branch-name
. - Open a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.
For issues and feature requests, open an issue.