npx

Installation
SKILL.md

npx - Node Package Executor

The npx module allows users to execute Node.js tools directly from the npm registry without needing to install them globally or locally first.

When to Activate

  • When running a CLI tool once (e.g., scaffolding a project).
  • When testing different versions of a package.

Patterns & Examples

Run Scaffolding Tool

# Execute create-react-app without installation
x npx create-react-app my-new-project

Checklist

  • Confirm the package name and arguments.
  • Verify if a specific version is required.
Related skills

More from x-cmd/skill

Installs
3
Repository
x-cmd/skill
GitHub Stars
20
First Seen
Apr 10, 2026