Skip to content

Angular Schematics for adding features to an existing angular project to improve productivity and organization-wide consistency

Notifications You must be signed in to change notification settings

rangle/schematics-angular

Repository files navigation

Angular Schematics for Productivity and Consistency

Developing large-scale web-applications is hard, and without a lot of experience building large Angular applications, it's very easy to make an architectural or structural mistake that could cost your team a lot of money and time to fix down the road once that mistake is realized.

The schematics in this library will help your team develop Angular applications that are consistent and have an architecture/folder structure that will scale for extremely large projects right from the get-go.

The output of these schematics is based on many years of experience building large-scale projects in Angular, and have been used in applications that contain several hundred-thousand lines of code. Thus, the opinions and ideas behind these schematics have been battle-tested and proved to prevent and solve scalability problems many people run into when building large-scale Angular projects.

Installation

To add these schematics to your angular-cli project, type the following in the console at the root of your project:

npm install @egervari/schematics-angular --save-dev

To run schematics from your console, also add the following global npm library:

npm install -g @angular-devkit/schematics-cli

Using Schematics Via Console

Adding prettier and overwriting TSLint and Prettier rules

To add prettier (if you currently don't have it installed) and use Rangle's preferred starting point for TSLint and Prettier rules, run the following schematic from your console:

schematics @egervari/schematics-angular:tslint-and-prettier

You should see the following updates to your project:

    Added "prettier" into devDependencies
    Added "tslint-config-prettier" into devDependencies
CREATE /prettier.config.js (173 bytes)
UPDATE /tslint.json (869 bytes)
UPDATE /package.json (2552 bytes)

Creating Features

To create a feature module containing components, routes, services, types and isolated ngrx infrastructure, you must specify the feature's name, path and optionally, you can specify your project's component prefix for its selector, but the schematic can often figure this out from your Angular project workspace.

schematics @egervari/schematics-angular:feature --name=my-feature --path=src/app --prefix=rng

If your project currently does not have a /features folder, the schematic will create one for you.

You should see the following files be created/updated when running this schematic:

CREATE /src/app/features/my-feature/my-feature-routing.module.ts (373 bytes)
CREATE /src/app/features/my-feature/my-feature.module.ts (687 bytes)
CREATE /src/app/features/my-feature/components/my-feature/my-feature.component.html (0 bytes)
CREATE /src/app/features/my-feature/components/my-feature/my-feature.component.scss (12 bytes)
CREATE /src/app/features/my-feature/components/my-feature/my-feature.component.ts (226 bytes)
CREATE /src/app/features/my-feature/components/index.ts (52 bytes)
CREATE /src/app/features/my-feature/services/my-feature.service.ts (204 bytes)
CREATE /src/app/features/my-feature/store/my-feature.actions.ts (239 bytes)
CREATE /src/app/features/my-feature/store/my-feature.effects.ts (477 bytes)
CREATE /src/app/features/my-feature/store/my-feature.reducer.ts (560 bytes)
CREATE /src/app/features/my-feature/store/my-feature.store.ts (312 bytes)
CREATE /src/app/features/my-feature/types/my-feature-state/my-feature-state.functions.ts (163 bytes)
CREATE /src/app/features/my-feature/types/my-feature-state/my-feature-state.interface.ts (59 bytes)
UPDATE /src/app/app-routing.module.ts (627 bytes)

Creating Modules

Sometimes you wish to create modules outside of your routes. They are not really features, but reusable pieces of code the rest of the app can share. To create such a module, run the following schematic:

schematics @egervari/schematics-angular:module --name=my-module --path=src/app

If your project currently does not have a /modules folder, the schematic will create one for you.

You should see the following files be created/updated when running this schematic:

CREATE /src/app/modules/my-module/my-module.module.ts (571 bytes)
CREATE /src/app/modules/my-module/services/my-module.service.ts (203 bytes)
CREATE /src/app/modules/my-module/store/my-module.actions.ts (236 bytes)
CREATE /src/app/modules/my-module/store/my-module.effects.ts (472 bytes)
CREATE /src/app/modules/my-module/store/my-module.reducer.ts (547 bytes)
CREATE /src/app/modules/my-module/store/my-module.store.ts (310 bytes)
CREATE /src/app/modules/my-module/types/my-module-state/my-module-state.functions.ts (159 bytes)
CREATE /src/app/modules/my-module/types/my-module-state/my-module-state.interface.ts (58 bytes)
UPDATE /src/app/app.module.ts (2445 bytes)

Creating Components

Creating components is equally easy - make sure to point the path to the module/feature folder you wish the component to be located:

schematics @egervari/schematics-angular:component --name=my-form --path=src/app

If your path currently does not have a /components folder, the schematic will create one for you.

You should see the following files be created/updated when running this schematic:

CREATE /src/app/components/my-form/my-form.component.html (0 bytes)
CREATE /src/app/components/my-form/my-form.component.scss (12 bytes)
CREATE /src/app/components/my-form/my-form.component.ts (214 bytes)
UPDATE /src/app/components/index.ts (192 bytes)
UPDATE /src/app/app.module.ts (2484 bytes)

Creating Services

Creates a service and updates the containing module file.

schematics @egervari/schematics-angular:service --name=my-api --path=src/app

If your path currently does not have a /services folder, the schematic will create one for you.

You should see the following files be created/updated when running this schematic:

CREATE /src/app/services/my-api.service.ts (200 bytes)
UPDATE /src/app/app.module.ts (2561 bytes)

Creating Types

Creates a paired interface and functions file for a given model.

schematics @egervari/schematics-angular:type --name=user-profile --path=src/app

If your path currently does not have a /types folder, the schematic will create one for you.

You should see the following files be created when running this schematic:

CREATE /src/app/types/user-profile/user-profile.functions.ts (150 bytes)
CREATE /src/app/types/user-profile/user-profile.interface.ts (56 bytes)

Creating a new project

The Angular CLI and the default @ngrx schematics do not create folders and files that help developers scale over the long term. Thus, we also provide a schematic to make some adjustments to a newly created Angular CLI project to help you get started on the right foot and to support the other schematics.

To create a new Angular CLI Project, execute the following commands and you're good to go:

npm install @angular/cli -g

ng new my-project

When asked:

  • Say (Y)es to add Angular Routing
  • Select SCSS for your stylesheet format
cd my-project

ng add @ngrx/store
ng add @ngrx/effects

npm install @egervari/schematics-angular --save-dev

And then to correct the default structure, run the initialize schematic with no parameters:

schematics @egervari/schematics-angular:initialize

You should see the following changes:

            Added "prettier" into devDependencies
            Added "tslint-config-prettier" into devDependencies
DELETE /src/app/app.component.html
DELETE /src/app/app.component.scss
DELETE /src/app/app.component.ts
DELETE /src/app/reducers/index.ts
DELETE /src/app/app.effects.ts
DELETE /src/app/reducers
DELETE /src/app/app.component.spec.ts
DELETE /src/app/app.effects.spec.ts
CREATE /prettier.config.js (172 bytes)
CREATE /src/app/components/index.ts (35 bytes)
CREATE /src/app/components/app/app.component.html (1173 bytes)
CREATE /src/app/components/app/app.component.scss (0 bytes)
CREATE /src/app/components/app/app.component.ts (215 bytes)
CREATE /src/app/store/app.reducer.ts (359 bytes)
CREATE /src/app/store/app.effects.ts (180 bytes)
CREATE /src/app/types/app-state/app-state.functions.ts (138 bytes)
CREATE /src/app/types/app-state/app-state.interface.ts (53 bytes)
UPDATE /tslint.json (869 bytes)
UPDATE /package.json (1493 bytes)
UPDATE /src/app/app.module.ts (686 bytes)

Using Schematics Through WebStorm

To use schematics in WebStorm, right-click on a folder, select 'New', then select 'Angular Schematic', and then select any schematic from the following list:

alt text

For the parameters input, WebStorm will pass many of the options - such as project name and path - on your behalf, so all you have to do is set the name parameter for most schematics and you're all set:

alt text

Building and testing

To build the source code, run:

npm run build

After the schematics are built, to run them locally from the project root, run:

cd dist
schematics .:feature --name=app --path=src/app

Linting and Prettier

To clean up the source code, run:

npm run fix

Publishing

To publish this to npm, run the following commands:

npm version major/minor/patch
npm run build
npm run publish

Quickly create a patch version

To quickly create a patch version, instead of going through all of the build and publish commands manually, instead run:

npm run release-patch

About

Angular Schematics for adding features to an existing angular project to improve productivity and organization-wide consistency

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages