Skip to content

Instantly share code, notes, and snippets.

@hoggren
Created April 18, 2016 12:43
Show Gist options
  • Save hoggren/3c8f623ddcc9807e76b9060747fa897a to your computer and use it in GitHub Desktop.
Save hoggren/3c8f623ddcc9807e76b9060747fa897a to your computer and use it in GitHub Desktop.
Spawns an airfoilspeakers instance
var fs = require('fs');
var spawn = require('child_process').spawn;
var airfoil = spawn('airfoilspeakers');
var wStream = fs.createWriteStream('./airfoil.log');
airfoil.stdout.pipe(wStream);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment