Run a command using sudo, prompting the user with an OS dialog if necessary.
Go to file
Joran Dirk Greef 36b303799e Fix setName
2015-06-08 16:29:05 +02:00
.gitignore Add .gitignore 2015-06-08 15:57:03 +02:00
index.js Fix setName 2015-06-08 16:29:05 +02:00
LICENSE Initial commit 2015-06-08 14:41:53 +02:00
osx.png Add screenshot image 2015-06-08 15:39:26 +02:00
package.json 1.1.1 2015-06-08 15:57:27 +02:00
README.md Fix screenshot link url 2015-06-08 15:38:31 +02:00

Sudo

Run a command using sudo, prompting the user with an OS dialog if necessary. Useful for background applications or native Electron apps that need sudo.

Sudo on Mac OS X for an app called "Ronomon"

Currently supports native OS dialog prompt on Mac OS X (patches welcome for Linux) and uses process.title as the name of the app requesting permission.

Sudo has no external dependencies and does not contain any native bindings.

Usage

Note: Your command should not start with the "sudo" prefix.

// To run a command using sudo:
var sudo = require('sudo-prompt');
sudo.exec('echo hello', function(error) {});

// To update the sudo timestamp for the current user:
sudo.touch(function(error) {});

// To use something other than process.title as the app name:
// Must be alphanumeric (may contain spaces).
sudo.setName('Your app name')

Concurrency

You can call sudo.exec and sudo.touch concurrently, Sudo will batch up permission requests into a single prompt.