exe

1.0.2 • Public • Published

exe

execute shell commands from node.js

. synchronous

.. with stdin, stdout, stderr and with environment variables

... as you would expect when executing commands in the shell itself

install

npm i -S exe

use

var exeCute = require('exe');
 
exeCute('echo "hello world"');
//> hello world
 
exeCute('echo "$PATH"');
// prints PATH environment variable
 

API

exeCute(command[, options])

  • same arguments as execSync

  • with the following default options:

 {
   stdio :[0,1,2],
   env: process.env
 }

test

npm test

note

requires node version >= 0.12.x since it uses child_process.execSync(command[, options]) introduced in 0.12.

license

MIT

author

Andi Neck @andineck

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i exe

    Weekly Downloads

    301

    Version

    1.0.2

    License

    MIT

    Last publish

    Collaborators

    • andineck