Skip to content

Latest commit

 

History

History
executable file
·
36 lines (22 loc) · 808 Bytes

readme.md

File metadata and controls

executable file
·
36 lines (22 loc) · 808 Bytes

Work in progresss

@geek/spawn

a cross-platform spawn replacement with promises

install

@geek/spawn Dependabot Status npm version

$ npm install @geek/spawn

usage

Asynchronous

var spawn = require('@geek/spawn').spawn;
spawn('echo', ['this is a test']);

Synchronous

var spawnSync = require('@geek/spawn').spawnSync;
spawnSync('echo', ['this is a test']);