Files
2025-09-24 13:26:28 +02:00

31 lines
443 B
Markdown

# is-root [![Build Status](https://travis-ci.org/sindresorhus/is-root.svg?branch=master)](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)