DEV Community

Cover image for New Terminal Output & Performance Improvements in Nx 13.5
Juri Strumpflohner for Nx

Posted on • Updated on • Originally published at blog.nrwl.io

New Terminal Output & Performance Improvements in Nx 13.5

Nx is a smart, extensible build framework to help you architect, test, and build at any scale - integrating seamlessly with modern technologies and libraries while providing a robust CLI, computation caching, dependency management, and more.
If you aren't familiar with it, learn about Nx at nx.dev.


New Terminal Output 💅

Folks that have been following along in our journey for quite some time know already that at Nx we strive for the best possible DX. The current terminal output was always something we haven't been super happy with, especially if you run some of the commands that trigger the execution of multiple tasks (e.g. affected commands, run-many etc). This is why we're even more excited about this feature: the new dynamic Nx terminal output is now the default for everyone.

It clearly separates the terminal output into an upper part where all the completed tasks and their corresponding execution time are listed and a lower part where the currently running tasks show up. Of course, errors are always shown immediately and therefore easy to spot.

There are a few things to note here (and which kinda emphasize our love with details & dev ergonomics 😉)

  • Off in CI  -  On CI you'll still see the full output.
  • The full terminal output is still cached  -  this is purely UI cosmetic. We still cache the entire terminal output. Hence, if you run the build of a single project that has previously been cached as part of a run-many command, you will see still the full output.

Thanks to James Henry for working on this feature!

Nx keeps getting faster and faster 🚀

Performance is a feature, and we take it seriously with Nx. We landed a number of different performance improvements over the last couple of minor versions, ranging from optimizing how we store & restore our cache to improving the Nx workspace analysis and boot time. With v13.5 we've seen some Nx operations being

  • 1.8x - 2.3x faster in the Interstellar repo
  • about 2x faster on some large client repositories

And we will not rest 😉.

Performance Profiling with Nx 🧐

When running an Nx command there might potentially be many tasks running at different times, in parallel, and using different processes. Optimizing those runs or better understanding where things go wrong might be a hard and cumbersome process. Being able to visualize things usually helps.

That's why we introduced the ability to profile and visualize Nx commands in the Chrome Devtools.

Chrome Devtools debugging Nx commands

Use the NX_PROFILE=<filename> environment variable attached to your Nx CLI command:

NX_PROFILE=profile.json nx build cart
Enter fullscreen mode Exit fullscreen mode

It'll produce a JSON file which you can then open with Chrome's devtools. Read more about it on the Nx Docs.

Thanks Jason for working on this feature!

React Native now supports Environment Variables

Whenever you set up React Native support within an Nx workspace, it should now automatically come with the react-native-config package installed. That allows you to have a .env file in the React Native app folder which can then be loaded from within your React Native application. 
You can find all the details on the Nx docs.

Thanks Emily Xiong for implementing this!

Improvements to the Project Graph Visualization

The project graph is always a nice feature to show off in videos, talks, and blog posts. But if done naively, it just remains that. We always wanted it to be more than that. As your workspace grows, your project graph visualization should become more useful, rather than a mess to look at. This is why we kept adding features for filtering, zooming, highlighting, focusing on specific nodes, incrementally expanding the view by using the proximity feature and more.

In v13.5 we now also store the current filter status in the URL. That makes it easy to pinpoint a certain view and share it with a co-worker. Actually, this could just be the beginning of some more interesting features when we think about CI and visualizations 🤔.

Visualization of Nx Dep Graph

Here's our deployed live example of the above screenshot: https://nrwl-nx-examples-dep-graph.netlify.app/?focus=products-home-page

Thanks Philip Fulcher for adding this feature!

There's one more thing: As developers, we like to be as efficient as possible. We wanted to help by saving you some keystrokes. The project graph visualization can now be launched with

nx graph
Enter fullscreen mode Exit fullscreen mode

nx dep-graph is registered as an alias and will continue to work 🙂.

New improvements to our Angular plugin

There have been a number of improvements to our Angular plugin ( @nrwl/angular ) :

  • Option to skip the Angular Module creation when generating new libraries by passing --skipModule
  • Support for multiple state slices when using the Nx Angular Data Persistence utilities. Thanks David for this community contribution !(#8216)
  • New Angular Nx workspaces now use v2 of the workspace configuration (Nx's format of the angular.json )
  • Lots of improvements to the Angular SCAM generator

How to Update Nx

Updating Nx is done with the following command, and will update your Nx workspace dependencies and code to the latest version:

nx migrate latest
Enter fullscreen mode Exit fullscreen mode

After updating your dependencies, run any necessary migrations.

nx migrate --run-migrations
Enter fullscreen mode Exit fullscreen mode

Enjoy!


Learn more

🧠 Nx Docs
👩‍💻 Nx GitHub
💬 Nrwl Community Slack
📹 Nrwl Youtube Channel
🥚 Free Egghead course
🧐 Need help with Angular, React, Monorepos, Lerna or Nx? Talk to us 😃

Also, if you liked this, click the ❤️ and make sure to follow Juri and Nx on Twitter for more!

#nx

Top comments (0)