Nx Devkit and Angular Devkit

Nx & Angular

This document covers the difference between Nx Devkit and Angular Devkit. See the Nx Devkit guide for more in-depth details about Nx Devkit.

Nx comes with a devkit to write generators and executors, but you can also use Angular devkit (schematics and builders). In other words, you can use an Angular schematic to implement a generator, and you can use an Angular builder to implement an executor.

What are the differences between Nx Devkit and Angular Devkit?

Generators

The following is a generator written using Nx Devkit:

import { Tree, formatFiles, generateFiles } from '@nrwl/devkit'; import * as path from 'path'; interface Schema { name: string; skipFormat: boolean; } export default async function (tree: Tree, options: Schema) { generateFiles( tree, path.join(__dirname, 'files'), path.join('tools/generators', schema.name), options ); if (!schema.skipFormat) { await formatFiles(tree); } }

The following is an analogous generator written as an Angular Schematic.

import { apply, branchAndMerge, chain, mergeWith, Rule, template, url, move, } from '@angular-devkit/schematics'; import { formatFiles } from '@nrwl/workspace'; import { toFileName } from '@nrwl/workspace'; interface Schema { name: string; skipFormat: boolean; } export default function (options: Schema): Rule { const templateSource = apply(url('./files'), [ template({ dot: '.', tmpl: '', ...(options as any), }), move('tools/generators'), ]); return chain([ branchAndMerge(chain([mergeWith(templateSource)])), formatFiles(options), ]); }

Notable Differences

  • Nx Devkit generators do not use partial application. An Angular Schematic returns a rule that is then invoked with a tree.
  • Nx Devkit generators do not use RxJS observables. Instead you invoke the helpers directly, which makes them more debuggable. As you step through the generator you can see the tree being updated.
  • There are more affordances for commonly used operations. For instance, chain([mergeWith(apply(url is replaced with generateFiles)
  • Nx Devkit generators return a function that performs side effects. Angular Schematics have to create a custom task runner and register a task using it.
  • Nx Devkit generators are composed as any other JS function. You do need to go through a special resolution step (externalSchematic) that is required when using Angular Schematics.
  • No special utilities are needed to test Nx Devkit generators. Special utilities are needed to test Angular Schematics.

Conversions

The Nx CLI can invoke Nx Generator or Angular Schematics directly. When the user runs:

nx g mygenerator params nx g mygenerator params # will work exactly the same same as the line above

The Nx CLI will see what type of generator mygenerator is and will invoke it using the right machinery. The user doesn't have to know how the generator is implemented.

At times, however, it might be useful to use an Nx Devkit generator in an Angular Schematic or vice versa.

Making an Angular Schematic out of Nx Devkit Generator:

First, you need to

export async function mygenerator(tree: Tree, options: Schema) { // ... } export const mygeneratorSchematic = convertNxGenerator(mygenerator);

Then, you might need to register it in the collections.json:

{ "name": "Nx React", "version": "0.1", "extends": ["@nrwl/workspace"], "schematics": { "mygenerator": { "factory": "./src/generators/mygenerator/mygenerator#mygeneratorSchematic", "schema": "./src/generators/mygenerator/schema.json" } }, "generators": { "init": { "factory": "./src/generators/mygenerator/mygenerator#mygenerator", "schema": "./src/generators/mygenerator/schema.json" } } }

Making an Nx Devkit Generator out of Angular Schematic:

export const libraryGenerator = wrapAngularDevkitSchematic( '@nrwl/angular', 'library' ); export async function mygenerator(tree: Tree, options: Schema) { await libraryGenerator(tree, options); }

Executors

The following is an executor written using Nx Devkit:

interface Schema { message: string; allCaps: boolean; } export default async function ( options: Schema, context: ExecutorContext ): Promise<{ success: true }> { if (options.allCaps) { console.log(options.message.toUpperCase()); } else { console.log(options.message); } return { success: true }; }

The following is an analogous executor written as an Angular builder:

interface Schema { message: string; allCaps: boolean; } export function run( options: Schema, context: BuilderContext ): Observable<{ success: true }> { if (options.allCaps) { console.log(options.message.toUpperCase()); } else { console.log(options.message); } return of({ success: true }); } export default createBuilder<NextBuildBuilderOptions>(run);

Notable Differences

  • Nx Devkit executors return a Promise (or async iterable). If you want, you can always convert an observable to a promise or an async iterable.
  • Nx Devkit executors do not have to be wrapped using createBuilder.

The schema files for both Nx Devkit executors and Angular Builders are the same. Nx can run both of them in the same way.

When to Use What

If you are writing an Nx plugin, use Nx Devkit. It's much easier to use and debug. It has better docs and more people supporting it.

Do you have to rewrite your Nx Plugin if it is written using Angular Devkit? No. Nx supports both and will always support both. And, most importantly, the end user might not even know what you used to write a generator or an executor.