Nx
Nx on GitHub
Course by Juri Strumpflohner

Link an e2e Project with Its Web App Through Implicit Dependencies

One of the main capabilities of Nx is that it builds a project graph behind the scenes which it uses optimize how it runs your tasks. You can visualize the graph using:

pnpm nx graph

Install Nx Console

You can also install Nx Console which is an extension for VSCode and IntelliJ that enhances the DX when working with Nx monorepos among which there's also the ability to visualize the project graph right in your editor window. Read more about it here.

While most of the relationships are discovered by Nx automatically via package.json dependencies or JS/TypeScript imports, some cannot be detected. E2E projects such as the Playwright project in our workspace doesn't directly depend on our Next.js application. There is a dependency at runtime though, because Playwright needs to serve our Next application in order to be ablet to run its e2e tests.

Implicit dependencies

In this lesson, you'll learn how to define such dependencies using the implicitDependencies property.

Monorepo World live replays available!

Watch the replays of exciting talks on developer tooling and monorepos! Catch all the insightful presentations from the event on our YouTube channel.