Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@lerna/package-graph
Advanced tools
@lerna/package-graph is a utility for managing and analyzing the dependency graph of packages within a monorepo. It helps in understanding the relationships between different packages and can be used to perform operations like finding dependencies, dependents, and traversing the graph.
Creating a Package Graph
This feature allows you to create a graph of packages from an array of package objects. The graph can then be used to analyze the relationships between the packages.
const { PackageGraph } = require('@lerna/package-graph');
const packages = [
{ name: 'package-a', version: '1.0.0', dependencies: { 'package-b': '^1.0.0' } },
{ name: 'package-b', version: '1.0.0', dependencies: {} }
];
const graph = new PackageGraph(packages);
console.log(graph);
Finding Package Dependencies
This feature allows you to find the dependencies of a specific package within the graph. In this example, it retrieves the dependencies of 'package-a'.
const { PackageGraph } = require('@lerna/package-graph');
const packages = [
{ name: 'package-a', version: '1.0.0', dependencies: { 'package-b': '^1.0.0' } },
{ name: 'package-b', version: '1.0.0', dependencies: {} }
];
const graph = new PackageGraph(packages);
const packageA = graph.get('package-a');
console.log(packageA.localDependencies);
Finding Package Dependents
This feature allows you to find the dependents of a specific package within the graph. In this example, it retrieves the dependents of 'package-b'.
const { PackageGraph } = require('@lerna/package-graph');
const packages = [
{ name: 'package-a', version: '1.0.0', dependencies: { 'package-b': '^1.0.0' } },
{ name: 'package-b', version: '1.0.0', dependencies: {} }
];
const graph = new PackageGraph(packages);
const packageB = graph.get('package-b');
console.log(packageB.localDependents);
depgraph is a tool for creating and analyzing dependency graphs. It provides similar functionality to @lerna/package-graph, such as creating graphs and finding dependencies and dependents, but it is more general-purpose and can be used outside of monorepos.
madge is a JavaScript library that can create dependency graphs for JavaScript and TypeScript projects. It offers visualization features and can detect circular dependencies, which makes it a more feature-rich alternative for visualizing dependencies compared to @lerna/package-graph.
dependency-cruiser is a tool to analyze and visualize dependencies in JavaScript and TypeScript projects. It offers extensive configuration options and can be used to enforce dependency rules, making it a more comprehensive tool for dependency management compared to @lerna/package-graph.
@lerna/package-graph
Lerna's internal representation of a package graph
You probably shouldn't, at least directly.
Install lerna for access to the lerna
CLI.
FAQs
Lerna's internal representation of a package graph
We found that @lerna/package-graph demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.