DEV Community

Discussion on: How to properly set up Prettier in less than 2 minutes

Collapse
 
snowlyg profile image
snowlyg

what's the npx commad?

Collapse
 
bokub profile image
Boris K

npx is a tool which comes with Node.js & npm

By default, when you run npx <command>, npx will check whether <command> exists in $PATH, or in the local project binaries, and execute that. If <command> is not found, it will be installed prior to execution.