Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@deepnote/reactivity

Package Overview
Dependencies
Maintainers
4
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@deepnote/reactivity

Reactivity and dependency graph for Deepnote notebooks

latest
Source
npmnpm
Version
1.2.0
Version published
Weekly downloads
430
-16.02%
Maintainers
4
Weekly downloads
 
Created
Source

@deepnote/reactivity

Reactivity and dependency graph for Deepnote notebooks.

Requirements

This package requires Python 3 and the jinja2 Python library to be installed on the system where it is running. The jinja2 library is used for parsing variable dependencies in SQL blocks.

You can install the requirement via pip:

pip install jinja2

By default, the package looks for python3 in the system path. You can override this by providing a pythonInterpreter path in the options of the main functions.

Overview

This package provides utilities for analyzing dependencies between Deepnote blocks to build a reactivity graph. It uses a Python-based AST analyzer to identify defined and used variables in various block types.

  • AST Analysis: Extracts variable definitions and usages across Python, SQL, button, big-number, notebook-function, and input-* blocks.
  • Dependency Tracking: Identifies how blocks depend on each other through variables.
  • Reactivity Support: Powers the reactive execution model by analyzing block content.

Usage

The primary entry point for the library is getDagForBlocks. It analyzes the content of the blocks and builds a Directed Acyclic Graph (DAG) representing their dependencies.

Basic Example

import { getDagForBlocks } from "@deepnote/reactivity";

const blocks = [
  // ... array of DeepnoteBlock objects
];

const { dag, newlyComputedBlocksContentDeps } = await getDagForBlocks(blocks);

// Access the dependency graph
console.log(dag.nodes);
console.log(dag.edges);

Key Functions

  • getDagForBlocks(blocks, options?): Builds the complete dependency graph of the notebook. This is useful for mapping out data flow and powering features like dependency visualizations. Use acceptPartialDAG: true in the options if you want to receive a graph even if some blocks have syntax errors. Supports pythonInterpreter option.
  • getDownstreamBlocks(blocks, blocksToExecute, options?): Identifies all blocks that need to be re-run when specific upstream blocks are executed or modified. This is the core function for implementing reactive execution, ensuring that the entire notebook remains consistent. Supports pythonInterpreter option.
  • getBlockDependencies(blocks, options?): A lower-level utility that extracts variable definitions and usages from block content using AST analysis. It is useful for inspecting the inputs and outputs of individual blocks without constructing the full graph. Supports pythonInterpreter option.

Core Concepts

  • Nodes: Each block in the notebook is a node in the DAG. Nodes contain information about inputVariables (variables used) and outputVariables (variables defined).
  • Edges: An edge exists from block A to block B if block B uses a variable defined by block A.
  • Reactivity: By understanding these dependencies, Deepnote can automatically determine which blocks need to be re-run when a variable is changed in an upstream block.

FAQs

Package last updated on 23 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts