is-npx
v1.0.0
Published
A small utility that checks if the process is running using npx
Downloads
5,983
Readme
is-npx
A small utility that checks if the process is running using npx
installation
npm install is-npx
Usage
Running with npx
npx node-module
// node-module/index.js
const isNpx = require('is-npx');
console.log(isNpx()) // true
Running without npx
node node-module/index.js
// node-module/index.js
const isNpx = require('is-npx');
console.log(isNpx()) // false