is-npx

A small utility that checks if the process is running using npx

  • is-npx

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
is-npx
1.0.05 years ago5 years agoMinified + gzip package size for is-npx in KB

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