Detailansicht verbessert
This commit is contained in:
30
express-server/node_modules/is-npm/readme.md
generated
vendored
Normal file
30
express-server/node_modules/is-npm/readme.md
generated
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
# is-npm [](https://travis-ci.org/sindresorhus/is-npm)
|
||||
|
||||
> Check if your code is running as an [npm script](https://www.npmjs.org/doc/misc/npm-scripts.html)
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
$ npm install --save is-npm
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var isNpm = require('is-npm');
|
||||
console.log(isNpm);
|
||||
```
|
||||
|
||||
```sh
|
||||
$ node foo.js
|
||||
#=> false
|
||||
$ npm run foo
|
||||
#=> true
|
||||
```
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](http://sindresorhus.com)
|
Reference in New Issue
Block a user