Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

exec-file-sync

sindresorhus40kMITdeprecated3.0.0

This package is no longer relevant as Node.js 0.12 is unmaintained.

Node.js 0.12 childProcess.execFileSync() ponyfill

built-in, core, ponyfill, polyfill, shim, child, process, execfilesync, execfile, exec, file, sync

readme

Deprecated

This package is no longer relevant as Node.js 0.12 is unmaintained.


exec-file-sync Build Status

Node.js 0.12 childProcess.execFileSync() ponyfill

Doesn't require node-gyp compilation or anything like that.

Install

$ npm install --save exec-file-sync

Usage

var execFileSync = require('exec-file-sync');

console.log(execFileSync('echo', ['unicorn']).toString().trim());
//=> 'unicorn'

License

MIT © Sindre Sorhus