Extending the Project Graph of Nx

This API is experimental and might change.

Project Graph is the representation of the source code in your repo. Projects can have files associated with them. Projects can have dependencies on each other.

One of the best features of Nx is that is able to construct the project graph automatically by analyzing your source code. Currently, this works best within the JavaScript ecosystem, but it can be extended to other languages and technologies using plugins.

Adding Plugins to Workspace

You can register a plugin by adding it to the plugins array in nx.json:

1{
2  ...,
3  "plugins": [
4    "awesome-plugin"
5  ]
6}

Implementing a Project Graph Processor

A Project Graph Processor that takes a project graph and returns a new project graph. It can add/remove nodes and edges.

Plugins should export a function named processProjectGraph that handles updating the project graph with new nodes and edges. This function receives two things:

  • A ProjectGraph

    • graph.nodes lists all the projects currently known to Nx. node.data.files lists the files belonging to a particular project.
    • graph.dependencies lists the dependencies between projects.
  • A Context

    • context.workspace contains the combined configuration for the workspace.
    • files contains all the files found in the workspace.
    • filesToProcess contains all the files that have changed since the last invocation and need to be reanalyzed.

The processProjectGraph function should return an updated ProjectGraph. This is most easily done using ProjectGraphBuilder. The builder is there for convenience, so you don't have to use it.

1import {
2  ProjectGraph,
3  ProjectGraphBuilder,
4  ProjectGraphProcessorContext,
5  DependencyType,
6} from '@nrwl/devkit';
7
8export function processProjectGraph(
9  graph: ProjectGraph,
10  context: ProjectGraphProcessorContext
11): ProjectGraph {
12  const builder = new ProjectGraphBuilder(graph);
13  // We will see how this is used below.
14  return builder.getUpdatedProjectGraph();
15}

Adding New Nodes to the Project Graph

You can add nodes to the project graph. Since first-party code is added to the graph automatically, this is most commonly used for third-party packages.

A Project Graph Plugin can add them to the project graph. After these packages are added as nodes to the project graph, dependencies can then be drawn from the workspace projects to the third party packages as well as between the third party packages.

1// Add a new node
2builder.addNode({
3  name: 'new-project',
4  type: 'npm',
5  data: {
6    files: [],
7  },
8});

Note: You can designate any type for the node. This differentiates third party projects from projects in the workspace. If you are writing a plugin for a different language, it's common to use IPC to get the list of nodes which you can then add using the builder.

Adding New Dependencies to the Project Graph

It's more common for plugins to create new dependencies. First-party code contained in the workspace is registered in workpspace.json and is added to the project graph automatically. Whether your project contains TypeScript or say Java, both projects will be created in the same way. However, Nx does not know how to analyze Java sources, and that's what plugins can do.

You can create 2 types of dependencies.

Implicit Dependencies

An implicit dependency is not associated with any file, and can be crated as follows:

1import { DependencyType } from '@nrwl/devkit';
2
3// Add a new edge
4builder.addImplicitDependency('existing-project', 'new-project');

Note: Even though the plugin is written in JavaScript, resolving dependencies of different languages will probably be more easily written in their native language. Therefore, a common approach is to spawn a new process and communicate via IPC or stdout. .

Because an implicit dependency is not associated with any file, Nx doesn't know when it might change, so it will be recomputed every time.

Explicit Dependencies

Nx knows what files have changed since the last invocation. Only those files will be present in the provided filesToProcess. You can associate a dependency with a particular file (e.g., if that file contains an import).

1import { DependencyType } from '@nrwl/devkit';
2
3// Add a new edge
4builder.addExplicitDependency(
5  'existing-project',
6  'libs/existing-project/src/index.ts',
7  'new-project'
8);

If a file hasn't changed since the last invocation, it doesn't need to be reanalyzed. Nx knows what dependencies are associated with what files, so it will reuse this information for the files that haven't changed.

Visualizing the Project Graph

You can then visualize the project graph as described here. However, there is a cache that Nx uses to avoid recalculating the project graph as much as possible. As you develop your project graph plugin, it might be a good idea to set the following environment variable to disable the project graph cache: NX_CACHE_PROJECT_GRAPH=false.

Example Project Graph Plugin

The nrwl/nx-go-project-graph-plugin repo contains an example project graph plugin which adds Go dependencies to the Nx Project Graph! A similar approach can be used for other languages.