1.0.0 • Published 6 years ago

is-npx v1.0.0

Weekly downloads
49
License
MIT
Repository
-
Last release
6 years ago

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