惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
A
About on SuperTechFans
The GitHub Blog
The GitHub Blog
U
Unit 42
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
IT之家
IT之家
MyScale Blog
MyScale Blog
V
Visual Studio Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
I
InfoQ
博客园 - 司徒正美

NodeJS Security & NodeJS Secure Coding's Blog

Hardening Your npm and pnpm Configs in the Age of Shai-Hulud Argument Injection vulnerability in git-blame@1.4.0 Argument Injection vulnerability in `gits@0.1.8` Command Injection vulnerability in `@fab1o/git@1.4.0` Command Injection vulnerability in `git-contributors` via unsanitized CLI arguments Command Injection vulnerability in `git-q@0.0.3` Command injection vulnerability via unsanitized CLI arguments in touxing/fast-git-clone Command Injection vulnerability in `willitmerge@0.2.1` A Directory Traversal Vulnerability I found in Mastra AI Frameworks MCP Server Mitigate Supply Chain Security with DevContainers and 1Password for Node.js Local Development The Tale of the Vulnerable MCP Database Server Bad Security Defaults in Mastra AI Frameworks Templates SQL Injection and Bypassing "Read-Only" Mode in Xata's MCP Server Security Advisory for qix npm supply-chain compromise affecting debug and billions of weekly download users How to Mitigate SQL Bypass in MCP Servers Enhancing MCP Server Security: A Guide to Using execFile Argument Injection Vulnerability in ggit How to Bypass Access Control in PostgreSQL in Simple PSQL MCP Server for SQL Injection Command Injection Flaws in ggit: Unveiling a Vulnerability Command Injection Vulnerability in Create MCP Server STDIO Tool Exposes System Monitoring Functions GitHub Kanban MCP Server Command Injection Vulnerability Threatens Developer Workflows Critical Command Injection Flaw in iOS Simulator MCP Server Exposes Development Environments Command Injection Vulnerability Discovered in Codehooks MCP Server: A Critical Security Analysis SSRF Shenanigans in safe-axios: Redirects Open the Backdoor SSRF Vulnerability in safe-axios: Unintended Public Address Classification Bypassing SSRF Safeguards in ssrfcheck: A Case of Incomplete Denylists Don't Be Fooled by Multicast, SSRF Bypass in private-ip Node.js Authentication from Lucia to Better Auth Bypassing SSRF Protection in nossrf: When Your Safeguards Become Loopholes Vue CLI Security Fix to Mitigate NPM Binary Planting
Mastering NPX: A Cheatsheet for npm and Node.js Power Users
2025-09-25 · via NodeJS Security & NodeJS Secure Coding's Blog

The npx command is a powerful tool in the Node.js ecosystem, often overshadowed by its one-trick pony usability. While npm is primarily used for package management, npx excels at executing Node.js packages without the need for global installations.

This article serves as a cheatsheet for developers looking to harness the full potential of npx, including some lesser-known commands that can streamline your workflow.

Table of Contents

  • Introduction to NPX
  • Running Packages with NPX
  • Finding Executable Paths
  • Using NPX with Specific Node Versions
  • Executing GitHub Gists
  • NPX and Environment Variables
  • Security Considerations
  • FAQ

Introduction to NPX

NPX is a command-line tool that comes bundled with npm. It allows developers to execute packages directly from the npm registry without installing them globally. This is particularly useful for running one-off commands or testing packages without polluting your global namespace.

Running Packages with NPX

The primary use case for NPX is to run Node.js packages. For example, if you want to run a package like create-react-app without installing it globally, you can use:

npx create-react-app my-new-app

This command will download the package, execute it, and then remove it from the cache, keeping your system clean.

Finding Executable Paths

Sometimes, you need to know where npx is running a package from. I found this to be especially useful if you maintain several versions of Node.js runtime via fnm or nvm. This can be achieved using the -p flag in conjunction with which or command -v. For Unix-like systems, the command looks like this:

npx -p <package-name> which <executable-name>

Example:

To find the location of the shellcheck executable:

npx -p shellcheck which shellcheck

This command installs shellcheck into a temporary location in the NPX cache and reports the path to its executable.

Using NPX with Specific Node Versions

NPX can be used to run packages with a specific version of Node.js. This is particularly useful when testing compatibility across different Node.js versions. You can specify the Node.js version using the -p flag:

This command will run the specified command using Node.js version 14.

Executing GitHub Gists

NPX can execute scripts directly from GitHub Gists, which is a handy feature for running small scripts shared by the community. To execute a Gist, use the following command:

Replace <gist-id> with the actual ID of the Gist you want to run.

Security disclaimer: Be cautious when executing code from untrusted sources, as it may contain malicious code.

NPX and Environment Variables

You can pass environment variables to NPX commands, which is useful for configuring the behavior of the executed package. For example:

MY_VAR=value npx <package-name>

This sets MY_VAR to value for the duration of the command execution.

Security Considerations

While NPX is a convenient tool, it also introduces some security risks. Running packages directly from the npm registry means you are executing code that hasn’t been vetted by you. Always ensure that the packages you run are from trusted sources. Consider using tools like npq to audit packages before execution.

FAQ

Q1: What is the difference between NPX and npm?

NPX is used for executing packages, while npm is used for installing and managing them. NPX allows you to run packages without installing them globally.

Q2: Can NPX be used with private packages?

Yes, NPX can run private packages if you have the necessary authentication set up in your npm configuration.

Q3: How does NPX handle package caching?

NPX caches packages temporarily in a directory, which is cleared after the command execution. This ensures that your system remains clean.

For more insights and updates, follow me on Twitter and explore my work on GitHub.