Vinícius Ernani de Carvalho 6c4544a079 Create the backend | 5 yıl önce | |
---|---|---|
.. | ||
index.js | 5 yıl önce | |
package.json | 5 yıl önce | |
readme.md | 5 yıl önce |
Check if your code is running as an npm script
$ npm install --save is-npm
var isNpm = require('is-npm');
console.log(isNpm);
$ node foo.js
#=> false
$ npm run foo
#=> true
MIT © Sindre Sorhus