
Security News
6 AppSec CTOs Debate Open Source Supply Chain Security at Black Hat
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.
🌈 Unified Package Manager for Node.js (npm, pnpm, yarn), Bun and Deno.
✅ Supports npm, yarn, pnpm, bun, deno, aube and nub out of the box with a unified API.
✅ Provides an API interface to interact with package managers.
✅ Autodetects project's package manager using package.json and known lockfiles.
✅ corepack integration for pnpm and yarn.
nypm commandInstall dependencies:
npx nypm i
Add a dependency:
npx nypm add defu
Remove a dependency:
npx nypm remove defu
Install package:
# ✨ Auto-detect
npx nypm install nypm
Import:
// ESM import
import { addDependency } from "nypm";
// or dynamic import
const { addDependency } = await import("nypm");
addDependency(name, options)Adds dependency to the project.
addDevDependency(name, options)Adds dev dependency to the project.
detectPackageManager(cwd, options)Detect the package manager used in a directory (and up) by checking various sources:
packageManager field from package.jsondevEngines.packageManager field from package.jsonensureDependencyInstalled(name, options)Ensures dependency is installed.
installDependencies(options)Installs project dependencies.
removeDependency(name, options)Removes dependency from the project.
dedupeDependencies(options)Dedupe project dependencies.
[!NOTE] For
bunanddenoit will remove the lockfile and reinstall all dependencies.
runScript(name, options)Runs a script defined in the package.json file.
dlx(package, options)Download and execute a package with the package manager.
installDependenciesCommand(<pm>, { short?, frozenLockFile? })Get the command to install dependencies with the package manager.
addDependencyCommand(<pm>, <name>, { dev?, global?, workspace?, yarnBerry?, short? })Get the command to add a dependency with the package manager.
runScriptCommand(<pm>, <name>, { args? })Get the command to run a script with the package manager.
dlxCommand(<pm>, <name>, { args?, short?, packages? })Get the command to download and execute a package with the package manager.
corepack enablepnpm installpnpm devNYPM is inspired from previous attempts and projects for unifying package manager experience.
Made with 💛
Published under MIT License.
FAQs
Unified Package Manager for Node.js
The npm package nypm receives a total of 16,336,390 weekly downloads. As such, nypm popularity was classified as popular.
We found that nypm 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.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.

Research
/Security News
Thirteen malicious Packagist themes expose visitors on unpatched iPhones to a WebKit-to-kernel exploit chain that steals device data and wallet seeds.

Research
/Security News
Ten malicious OpenAPI React Query Codegen versions were published to npm in the Mini Shai-Hulud attack, all with valid provenance.