Skip to content

Run Locally Installed NPM Library

View on Twitter

💡 Want to run a locally installed CLI library without adding it to npm scripts?

👉🏼 NPX will look into your node_modules/.bin/ folder before downloading from the web.

➡️ ./node_modules/.bin/eslint myfiles.js ❌
➡️ npx eslint myfile.js ✅

You might also like
Assign a Random Port to Node.js Server Read tip
Improve Nginx Performance: Direct File Transfers Read tip
Strict vs Non-Strict Mode in ECMAScript Read tip