Angular schematics to generate files and maintain clean architecture
npm install @ngflow/ng-architect 
ng-architect is an Angular schematic that automates the creation of complete features while keeping a clean and consistent project structure and architecture.
It generates pages, services, models, store, and routes, making your development faster and more organized.
---
``bash`Install as a dev dependency
npm install @ngflow/ng-architect --save-dev
bash
ng g @ngflow/ng-architect:ng-architect --name=
example:
ng g @ngflow/ng-architect:ng-architect --name=user-profile
``bash
This will create the following structure:src/app/features/user-profile/
├─ data/
│ ├─ user-profile.service.ts
│ └─ user-profile.store.ts
├─ models/
│ └─ user-profile.model.ts
└─ pages/
├─ user-profile.page.ts
├─ user-profile.page.html
└─ user-profile.page.scss
If app.routes.ts exists, the feature route will be added automatically.
``