Skip to content

Instantly share code, notes, and snippets.

@jdx
Created April 20, 2016 18:19
Show Gist options
  • Save jdx/f989fea7db54ee03712ba58be82c3713 to your computer and use it in GitHub Desktop.
Save jdx/f989fea7db54ee03712ba58be82c3713 to your computer and use it in GitHub Desktop.
node spawn example
'use strict';
let spawn = require('child_process').spawn;
spawn('git', ['--version'], {stdio: 'inherit'});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment