paluma-schematics-pro
v0.0.3
Published
An Angular schematics study project
Downloads
1
Maintainers
Readme
Study focused on generating a customized Angular project.
Objective
The objective of this study is to explore the use of the Schematics library to generate customized projects in Angular. Angular is a widely used framework for web application development, and with the help of Schematics, we can automate the creation of projects with specific structures and configurations.
How it works
Schematics is a library that allows the creation of code generators for Angular. With it, we can define a set of instructions and actions that will be executed to create a new project. These instructions can include creating directories, adding modules, components, and services, configuring routing, among other tasks.
In this study, we will develop a set of custom Schematics that will facilitate the creation of Angular projects with predefined configurations. This will enable greater agility and standardization in the process of creating new projects, avoiding the need to manually repeat the same configuration steps for each new project.
Expected outcomes
At the end of this study, the expected outcome is to obtain a set of custom Schematics that can be used to generate Angular projects with predefined configurations. These Schematics will be made available in a reusable package, allowing developers to save time and effort when creating new projects while maintaining consistency and standardization.
schematics --help
Unit Testing
npm run test
will run the unit tests, using Jasmine as a runner and test framework.
Publishing
To publish, simply do:
npm run build
npm publish
That's it!