31 lines
443 B
Markdown
31 lines
443 B
Markdown
# is-root [](https://travis-ci.org/sindresorhus/is-root)
|
|
|
|
> Check if the process is running as root user, eg. started with `sudo`.
|
|
|
|
|
|
## Install
|
|
|
|
```sh
|
|
$ npm install --save is-root
|
|
```
|
|
|
|
|
|
## Usage
|
|
|
|
```sh
|
|
$ sudo node index.js
|
|
```
|
|
|
|
```js
|
|
// index.js
|
|
var isRoot = require('is-root');
|
|
|
|
isRoot();
|
|
//=> true
|
|
```
|
|
|
|
|
|
## License
|
|
|
|
MIT © [Sindre Sorhus](http://sindresorhus.com)
|