
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Generate rich, semantic, and interactive codemaps with a functional, composable API for Node.js.
This repository contains the RepoGraph library split into three separate npm packages for better modularity and environment-specific usage.
repograph-core
Core types, utilities, and environment-agnostic components.
Contains:
CodeNode
, CodeGraph
, etc.)Usage:
npm install repograph-core
repograph-browser
Browser-compatible version with Tree-sitter WASM support.
Contains:
Usage:
npm install repograph-browser
repograph
Full Node.js version with CLI support and file system operations.
Contains:
Usage:
npm install repograph
# Install dependencies for all packages
npm install
# Build all packages (core -> browser -> main)
npm run build
# Build core package first (required by others)
npm run build:core
# Build browser package (depends on core)
npm run build:browser
# Build main package (depends on core)
npm run build:main
repograph-core (standalone)
├── repograph-browser (depends on core)
└── repograph (depends on core)
If you're migrating from the single repograph
package:
// Before
import { analyzeProject } from 'repograph/browser';
// After
import { analyzeProject } from 'repograph-browser';
// Before
import { generateMap, analyzeProject } from 'repograph';
// After - no change needed
import { generateMap, analyzeProject } from 'repograph';
// Before
import type { CodeNode, CodeGraph } from 'repograph';
// After
import type { CodeNode, CodeGraph } from 'repograph-core';
Each package can be published independently:
# Publish core first
cd packages/repograph-core && npm publish
# Then browser
cd packages/repograph-browser && npm publish
# Finally main
cd packages/repograph && npm publish
MIT
FAQs
Generate rich, semantic, and interactive codemaps with a functional, composable API for Node.js.
We found that repograph demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.