DEV Community

Cover image for Be aware of your codebase with Nx
Luca Del Puppo for This is Learning

Posted on • Originally published at blog.delpuppo.net on

Be aware of your codebase with Nx

Preface

Is your team aware of the relations between your modules? Is a team member able to understand what is affected by the changes in a new feature quickly? Probably your answer is: it depends. It depends on the team member and on the time that this team member is on the project. But today I want to show you how you can make your team more confident in your codebase regardless of the seniority or the time he or she is in the project.

The problem

Imagine a typical first onboarding day in your company. Probably after the introduction and some hours with the HR team the new colleague starts the onboarding stage with a technical team member. The first thing shown is a demo of the software so they start to understand the business value of the project. After that or its coffee break time or its time to see the codebase. After the project's checkout, your new colleague and you will open the project in your editor or IDE and the first impact with the codebase for your newbie could be like this:

Folder Structure

And now you start to illustrate how the codebase is structured for each folder. Yes, if you are on the project for a while you know much of the code but for your new colleague understanding and remembering all this stuff quickly is not simple. They also want to see which modules are connected and how, but you dont have a tool to see this information quickly. So you will be forced to open many files to know where the imports are, but for your new colleague, these actions will result in tedious unintelligible steps and will not leave the correct information in their mind.

But is there a way to improve this situation and help the newbie and the boomer of your project to have a picture of the project and get this info quickly anytime?

A better onboarding day

Ok, your onboarding day could probably be better, and your new colleague could be more confident about the project after the first day. Do you know that a picture is better than thousand words for your mind? Do you know that your mind remembers images better than words? Therefore, what if the first impression of the project for your new colleague could be like this?

Nx Graph Picture

The newbies will be grateful because they have a big picture of the project and by themselves, they can understand the relations in the codebase. But the surprises are not finished; if you click with the mouse on the relation's arrows, it's possible to see which file creates the connection between the modules, is it not cool?

Ok, fantastic, but now you are wondering "How can I do that?" Beah, it's simple, using Nx.

What is Nx?

Nx is a Smart , Fast , Extensible build System.

Nx is a tool built by Nrwl that allows teams to handle their projects in a great way. One of the goals of Nx is to improve the DevX of teams that work using Monorepo. Nx exposes out-of-the-box for testing: jest, storybook and cypress. Instead, Eslint and Prettier are already configurated to work with the code style. About frameworks, Nx is able to work in the same workspace with React, Angular, WebComponent, and NextJs on the frontend side and with Express, Fastify and NestJS on the backend side. The nrwl team officially maintains these frameworks, but it is also possible to use Nx with other languages or frameworks thanks to the plugins created by the community. Cool!! But Nx doesnt stop here its potential. Nx has an excellent feature called Nx Graph, available by a web application or the Nx Console (an extension created by the nrwl team that works both in VsCode and WebStorm). But lets deepen into Nx Graph.

Nx Graph

Nx Graph is a web application that shows the tree of your workspace and allows the team to see the state of the codebase. Using the Nx Graph is very simple to check the relations between the modules, and its easy to check the paths between two modules. But Nx doesnt end its power here because it is also able to understand what is changed in your feature branch and detects what is affected by these changes. In these cases, the Nx Graph highlights modules affected by the changes, so you and your team can visualize what could be impacted.

Nx under the hood uses this information to improve tasks like building and testing. Yes, you read well, it uses this info to enhance the tasks, so Nx is able to build and test only the modules affected by the changes. As you can understand, if your project snowballs, the build and the test time dont increase drastically.

Not only for onboarding days

The benefits of using Nx are not only during the onboarding days. Using the Nx Graph, your team can see in less time how the project has changed over time or check how the project is growing up. Using Nx is also possible to create rules to prevent relations between modules or tagging modules to develop rules around these tags, but this is another story that we will discover in future.

Okay, for today, that's all. I hope you understood this tool's power and that now you are curious about it. If so, visit the Nx site and start to take your first steps. If you are curious about the Nx Graph, I suggest you to watch this video by juri.

See you soon with other posts about Nx.

Bye bye

Top comments (9)

Collapse
 
fyodorio profile image
Fyodor

Be aware of that your codebase is doomed with Nx

(sorry, bloody experience...)

Collapse
 
dikamilo profile image
dikamilo

Not really. It's a bless for big projects, and enforcing project boundaries feature in Nx helps a lot.

Collapse
 
puppo profile image
Luca Del Puppo

What kind of trouble did you have?

Collapse
 
fyodorio profile image
Fyodor

All of them dude, all of them…

Image description

Thread Thread
 
juristr profile image
Juri Strumpflohner

I'd like to know more :)

Thread Thread
 
fyodorio profile image
Fyodor

Thanks for the interest Juri but there's nothing special β€” just the bunch of headache and PITA that's already either in the Nx's issue tracker or the dead-end community Slack threads

Collapse
 
lissy93 profile image
Alicia Sykes

Yeah, I've found that in practice it's very rigid, and when you're working with a pre-existing code-base, both setup and management seems to just add more overhead than it's worth.
Just my opinion, and I'm sure it would be different if it was a greenfield project, and if you were happy with their standards and set of plugins.

Collapse
 
juristr profile image
Juri Strumpflohner

Hey Alicia.

For pre-existing codebases I recommend going with a package-based monorepo approach. Here are some useful links if you're curiuos :)

Hope this helps :)

Collapse
 
puppo profile image
Luca Del Puppo

Maybe it's true, but if you don't like their plugins you can create your own if you think a different process fits better for you.
Then I didn't say that nx is the best in the world :) I think each tool has pros and cons in our world, and we have to make the best decision for our projects.
And I agree with you when you said, if it is a greenfield project is better because probably in brownfield projects the team used different approaches in the past or maybe the team didn't have rules and refactoring the codebase in a different way is not simple.
That being said, I got many benefits using nx, and the graph is one of them. Nx is not simple to use in the first approach but after some side projects and some real projects, I found how to use it and get the many benefits for the teams.

But, listening to stories where nx didn't give the same good benefits, will help me to pay attention in the future :)