Unlocking the Power of the Dependency Graph

This ad is not shown to multipass and full ticket holders
JS Nation
JSNation 2026
June 11 - 15, 2026
Amsterdam & Online
The main JavaScript conference of the year
Upcoming event
JSNation 2026
JSNation 2026
June 11 - 15, 2026. Amsterdam & Online
Learn more
Bookmark
Rate this content
Sentry
Promoted
Code breaks, fix it faster

Crashes, slowdowns, regressions in prod. Seer by Sentry unifies traces, replays, errors, profiles to find root causes fast.

Node.js applications are increasingly defined by their dependency graph, yet most tooling still treats it as an opaque side effect. node_modules hides structure, workspaces are layered on, and understanding how dependencies relate (or even why they exist) remains surprisingly difficult.

This talk introduces the vlt client and shows what becomes possible when the dependency graph is treated as a first-class JavaScript artifact. By exposing graph construction, resolution, traversal, and querying as reusable JavaScript primitives, vlt enables both powerful CLI workflows and entirely new classes of programmatic tooling. Building the client in JavaScript ensures that advances in package management feed directly back into the ecosystem, strengthening the shared library corpus and raising the ceiling for Node.js tooling.

This talk has been presented at Node Congress 2026, check out the latest edition of this JavaScript Conference.

FAQ

The main focus of Rui Adorno's talk is on unlocking the power of the dependency graph and demonstrating how to leverage it using the Vault client.

Rui Adorno is a founder engineer at Vault and has previously worked at NPM Inc., GitHub, and Google. He has extensive experience in the Node.js package management space.

Dependency Selector Syntax (DSS) is a query language based on CSS selectors that allows users to query and manage the dependency graph of a JavaScript project.

DSS helps in managing dependencies by allowing users to query the dependency graph using CSS-like selectors, enabling them to filter and select packages based on various attributes like name, version, author, and security metadata.

VLT introduces two phases for package installation: Phase one involves downloading and extracting packages without executing lifecycle scripts, and phase two involves building selected scripts using dependency selector syntax for targeting.

VLT improves security by blocking all install scripts by default, allowing users to inspect the dependency graph and check for security issues before any code runs, thus preventing potentially malicious scripts from executing automatically.

Yes, DSS can be expanded to query across multiple projects using the host local selector, allowing users to target all configured projects in their system.

AI agents can benefit from a queryable dependency graph by receiving structured data instead of crawling files, resulting in faster and more efficient access to machine-readable output and rich metadata.

Users can use VLT's pkg command to add new properties to package.json files, such as adding dependencies or scripts, across all or selected workspaces within a project.

A dependency graph in JavaScript is a data structure that represents the dependencies of a project. It is created when a package manager resolves dependencies during installation.

Ruy Adorno
Ruy Adorno
19 min
26 Mar, 2026

Comments

Sign in or register to post your comment.
Video Summary and Transcription
Rui Adorno emphasizes the power of dependency graphs in JavaScript projects, highlighting the underutilized graph structure and the importance of understanding metadata. The discussion delves into advanced dependency selector syntax, integrating query language with VLT client for updates and additions, running tests, and updating versions. The exploration of VLT client features includes secure package installs, phased installation processes, and DSS capabilities. Multi-project package filtering is expanded through DSS query language with a host local selector for benefits like script inspection and AI agents.

1. Exploring Dependency Graphs in JavaScript

Short description:

Rui Adorno, founder engineer at Vault, explains the power of the dependency graph in JavaScript projects. Dependencies are crucial, forming a graph structure often underutilized. Treating the graph as a first-class citizen involves understanding, querying, and utilizing metadata effectively.

Welcome, everyone. In this talk, we'll go over some ideas on how to unlock the power of the dependency graph, along with some examples of how to leverage it using the Vault client. I'm Rui Adorno, I'm a founder engineer at Vault, where we're building the future of JavaScript packages. Before that, I worked at NPM Inc. and eventually moved to the NPM CLI team at GitHub. Before joining Vault, I spent two years at Google working with the JavaScript SDK, which gave me another round of experience as an end user before jumping back again to the JavaScript supply chain world. I've been working in the Node.js package management space for years, and what I want to share today comes from that experience.

Well, dependencies are the building blocks of JavaScript projects, but the resulting data structure, a graph they form, has been historically underutilized by the tooling ecosystem. Understanding how these dependencies relate and why they even exist remains surprisingly difficult. Every project has dependencies. Anytime you run an install, the package manager will resolve the dependency, creating a graph data structure that has to be resolved, deduplicated, before eventually writing all the files to disk. But after all, the graph data structure is ignored for almost all other commands. And this graph data structure should be treated as a first-class citizen.

What tooling that treats the graph data structure as a first-class citizen looks like? Well, you should expose that graph structure, then make use of a syntax to allow querying the contents of the structure, and finally, use the understanding of the graph structure across all sorts of project operations. This is what the dependency graph actually looks like. Not a flat list of folders in Node modules, but likely a cyclical graph. In this case, my app depends on Express, React, and TypeScript. Express depends on BodyParser, XSAP, and so on and so on. And when we zoom in, we realize that every node carries its full metadata, security, relationships, everything should be queryable. And here's what lives inside each node. Not just the name of the version, but also integrity hashes, published dates, author information, security details. When you keep the graph, all of this metadata is queryable. You can ask, show me all packages published before a certain date or show me everything by a specific author, because it's all right there in the graph. Here, I wanted to introduce this concept of the dependency selector syntax, which is something that we've been using for a long time. Here, I wanted to introduce this concept of the dependency selector syntax. We call it DSS for short. It's based on CSS selectors, and it helps us answer complex questions about dependencies, their relationship, and metadata. You can see how it fits very well with the CSS model. Let's start with some concrete examples. It's easier to visualize. Starting here with the star operator is just selecting all the nodes in the graph.

2. Advanced Dependency Selector Syntax

Short description:

The text explores selecting specific dependencies, combining selectors, and filtering based on security metadata. It showcases examples of selecting direct dependencies of workspaces, combining different selectors, and utilizing security-based selectors for filtering.

In this case, they're all selected, so everything is yellow here. You can see how this graph is the connections between each node, which is the dependency declaration from each one of these packages, and the realization of that package, which is each node that we are seeing colored yellow here. To show a little bit more what this dependency selector syntax looks like, let me start with some examples of some other useful selectors. In this example here, we're looking at common root. It's basically the selector that allows you to select the root of the project. Moving on to this one here, we're starting to combine different parts of the syntax together to form a more complex selector to query the graph. In this case, we're using common workspace and then little arrow and star, which basically what we're doing here is that we're selecting the direct dependencies of workspaces. This syntax should feel very natural for folks used with CSS syntax, so this is basically what's going on here. Starting from workspace, give me the direct dependencies. It can be anything. It's just a star, right? We can see that, in this diagram here, we have only the items at the bottom colored yellow because they have been selected, and we can see their parents. We can see how they connect all the way to the root of the project.

Here, in this example, we're going to select a specific dependency by name, so we're using pound and the name of the dependency. In this case, we're using pound is exe, and we can see the node at the bottom and all its ancestors until the root of the project. In this case, exe is a direct dependency of which, which is a dependency of my server workspace. Select direct dependencies of workspace and root. In this example, we're going to combine these two previous examples we've seen before, but we're using a comma to separate and basically get the results of both selectors at the same time. In this example here, you can see we see all the direct dependencies of the workspaces are highlighted, and we're also including exe at the bottom there as a dependency of which because it has been selected directly by its name. In this case, we're seeing here the workspace client and the workspace server. They're being combined using the is selector, and we're getting the direct dependencies of these workspaces. So, you can see here in the resulting diagram, we end up just with just server and client workspaces, and at the bottom we can see their dependencies. And there are also security insights-based selectors that allows us to filter based on security metadata provided by Socket. And in this case here, we're using the score, the score selector, that scores basically metadata and aggregate of different data points that Socket collects. And in my example here, I want to put the bar high in my project, I want to know what package inside my project has a score under 80. And in this case here, I got this English Days package that is being highlighted as a direct dependency of the client workspace. So, this way I can filter based on all this security metadata that is provided by Socket. And here at the side, we can see a little bit of what that data looks like. In this example, I'm using the not selector to kind of just deny the selector that is inside of it. So, in this example, I want to get all the packets in my project that are not licensed MIT. So, it's returning to me my root, node, and all the workspaces because those don't have any license at all, but it's also picking up anything that's using a license other than MIT.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

It's a Jungle Out There: What's Really Going on Inside Your Node_Modules Folder
Node Congress 2022Node Congress 2022
26 min
It's a Jungle Out There: What's Really Going on Inside Your Node_Modules Folder
Top Content
The talk discusses the importance of supply chain security in the open source ecosystem, highlighting the risks of relying on open source code without proper code review. It explores the trend of supply chain attacks and the need for a new approach to detect and block malicious dependencies. The talk also introduces Socket, a tool that assesses the security of packages and provides automation and analysis to protect against malware and supply chain attacks. It emphasizes the need to prioritize security in software development and offers insights into potential solutions such as realms and Deno's command line flags.
ESM Loaders: Enhancing Module Loading in Node.js
JSNation 2023JSNation 2023
22 min
ESM Loaders: Enhancing Module Loading in Node.js
Top Content
ESM Loaders enhance module loading in Node.js by resolving URLs and reading files from the disk. Module loaders can override modules and change how they are found. Enhancing the loading phase involves loading directly from HTTP and loading TypeScript code without building it. The loader in the module URL handles URL resolution and uses fetch to fetch the source code. Loaders can be chained together to load from different sources, transform source code, and resolve URLs differently. The future of module loading enhancements is promising and simple to use.
The State of Node.js 2025
JSNation 2025JSNation 2025
30 min
The State of Node.js 2025
Top Content
The speaker covers a wide range of topics related to Node.js, including its resilience, popularity, and significance in the tech ecosystem. They discuss Node.js version support, organization activity, development updates, enhancements, and security updates. Node.js relies heavily on volunteers for governance and contribution. The speaker introduces an application server for Node.js enabling PHP integration. Insights are shared on Node.js downloads, infrastructure challenges, software maintenance, and the importance of update schedules for security.
Towards a Standard Library for JavaScript Runtimes
Node Congress 2022Node Congress 2022
34 min
Towards a Standard Library for JavaScript Runtimes
Top Content
There is a need for a standard library of APIs for JavaScript runtimes, as there are currently multiple ways to perform fundamental tasks like base64 encoding. JavaScript runtimes have historically lacked a standard library, causing friction and difficulty for developers. The idea of a small core has both benefits and drawbacks, with some runtimes abusing it to limit innovation. There is a misalignment between Node and web browsers in terms of functionality and API standards. The proposal is to involve browser developers in conversations about API standardization and to create a common standard library for JavaScript runtimes.
Out of the Box Node.js Diagnostics
Node Congress 2022Node Congress 2022
34 min
Out of the Box Node.js Diagnostics
This talk covers various techniques for getting diagnostics information out of Node.js, including debugging with environment variables, handling warnings and deprecations, tracing uncaught exceptions and process exit, using the v8 inspector and dev tools, and generating diagnostic reports. The speaker also mentions areas for improvement in Node.js diagnostics and provides resources for learning and contributing. Additionally, the responsibilities of the Technical Steering Committee in the TS community are discussed.
Node.js Compatibility in Deno
Node Congress 2022Node Congress 2022
34 min
Node.js Compatibility in Deno
Deno aims to provide Node.js compatibility to make migration smoother and easier. While Deno can run apps and libraries offered for Node.js, not all are supported yet. There are trade-offs to consider, such as incompatible APIs and a less ideal developer experience. Deno is working on improving compatibility and the transition process. Efforts include porting Node.js modules, exploring a superset approach, and transparent package installation from npm.

Workshops on related topic

Building a RAG System in Node.js: Vector Databases, Embeddings & Chunking
Node Congress 2025Node Congress 2025
98 min
Building a RAG System in Node.js: Vector Databases, Embeddings & Chunking
Featured Workshop
Alex Korzhikov
Pavlik Kiselev
2 authors
Large Language Models (LLMs) are powerful, but they often lack real-time knowledge. Retrieval-Augmented Generation (RAG) bridges this gap by fetching relevant information from external sources before generating responses. In this workshop, we’ll explore how to build an efficient RAG pipeline in Node.js using RSS feeds as a data source. We’ll compare different vector databases (FAISS, pgvector, Elasticsearch), embedding methods, and testing strategies. We’ll also cover the crucial role of chunking—splitting and structuring data effectively for better retrieval performance.Prerequisites- Good understanding of JavaScript or TypeScript- Experience with Node.js and API development- Basic knowledge of databases and LLMs is helpful but not required
Agenda📢 Introduction to RAG💻 Demo - Example Application (RAG with RSS Feeds)📕 Vector Databases (FAISS, pgvector, Elasticsearch) & Embeddings🛠️ Chunking Strategies for Better Retrieval🔬 Testing & Evaluating RAG Pipelines (Precision, Recall, Performance)🏊‍♀️ Performance & Optimization Considerations🥟 Summary & Q&A
Build a MCP (Model Context Protocol) in Node.js
JSNation US 2025JSNation US 2025
97 min
Build a MCP (Model Context Protocol) in Node.js
Featured Workshop
Julián Duque
Julián Duque
Model Context Protocol (MCP) introduces a structured approach to LLM context management that addresses limitations in traditional prompting methods. In this workshop, you'll learn about the Model Context Protocol, its architecture, and how to build and use and MCP with Node.jsTable of Contents:What Is the Model Context Protocol?Types of MCPs (Stdio, SSE, HTTP Streaming)Understanding Tools, Resources, and PromptsBuilding an MCP with the Official TypeScript SDK in Node.jsDeploying the MCP to the Cloud (Heroku)Integrating the MCP with Your Favorite AI Tool (Claude Desktop, Cursor, Windsurf, VS Code Copilot)Security Considerations and Best Practices
Node.js Masterclass
Node Congress 2023Node Congress 2023
109 min
Node.js Masterclass
Top Content
Workshop
Matteo Collina
Matteo Collina
Have you ever struggled with designing and structuring your Node.js applications? Building applications that are well organised, testable and extendable is not always easy. It can often turn out to be a lot more complicated than you expect it to be. In this live event Matteo will show you how he builds Node.js applications from scratch. You’ll learn how he approaches application design, and the philosophies that he applies to create modular, maintainable and effective applications.

Level: intermediate
Build and Deploy a Backend With Fastify & Platformatic
JSNation 2023JSNation 2023
104 min
Build and Deploy a Backend With Fastify & Platformatic
Top Content
WorkshopFree
Matteo Collina
Matteo Collina
Platformatic allows you to rapidly develop GraphQL and REST APIs with minimal effort. The best part is that it also allows you to unleash the full potential of Node.js and Fastify whenever you need to. You can fully customise a Platformatic application by writing your own additional features and plugins. In the workshop, we’ll cover both our Open Source modules and our Cloud offering:- Platformatic OSS (open-source software) — Tools and libraries for rapidly building robust applications with Node.js (https://oss.platformatic.dev/).- Platformatic Cloud (currently in beta) — Our hosting platform that includes features such as preview apps, built-in metrics and integration with your Git flow (https://platformatic.dev/). 
In this workshop you'll learn how to develop APIs with Fastify and deploy them to the Platformatic Cloud.
Building a Hyper Fast Web Server with Deno
JSNation Live 2021JSNation Live 2021
156 min
Building a Hyper Fast Web Server with Deno
Top Content
Workshop
Matt Landers
Will Johnston
2 authors
Deno 1.9 introduced a new web server API that takes advantage of Hyper, a fast and correct HTTP implementation for Rust. Using this API instead of the std/http implementation increases performance and provides support for HTTP2. In this workshop, learn how to create a web server utilizing Hyper under the hood and boost the performance for your web apps.
0 to Auth in an Hour Using NodeJS SDK
Node Congress 2023Node Congress 2023
63 min
0 to Auth in an Hour Using NodeJS SDK
WorkshopFree
Asaf Shen
Asaf Shen
Passwordless authentication may seem complex, but it is simple to add it to any app using the right tool.
We will enhance a full-stack JS application (Node.JS backend + React frontend) to authenticate users with OAuth (social login) and One Time Passwords (email), including:- User authentication - Managing user interactions, returning session / refresh JWTs- Session management and validation - Storing the session for subsequent client requests, validating / refreshing sessions
At the end of the workshop, we will also touch on another approach to code authentication using frontend Descope Flows (drag-and-drop workflows), while keeping only session validation in the backend. With this, we will also show how easy it is to enable biometrics and other passwordless authentication methods.
Table of contents- A quick intro to core authentication concepts- Coding- Why passwordless matters
Prerequisites- IDE for your choice- Node 18 or higher