What is npx?

May 14, 2025

What the heck is npx, which is occasionally used in JavaScript projects? It’s a CLI tool that comes with NodeJS that allows you to run NodeJS scripts without installing them globally. For example,

npx -y whats-the-weather paris
The current weather in Paris is 'few clouds' with a temperature of 19°°C.

#npx #nodejs #javascript #cli