Skip to content

Instantly share code, notes, and snippets.

@czbaker
Created June 27, 2015 13:13
Show Gist options
  • Select an option

  • Save czbaker/59014f82abb80b39a636 to your computer and use it in GitHub Desktop.

Select an option

Save czbaker/59014f82abb80b39a636 to your computer and use it in GitHub Desktop.
client = MPD.connect({
port: 6600,
host: 'localhost'
});
client.on('system-player', function() {
client.sendCommand(cmd('currentsong', []), function(err, msg) {
if (err) throw new Meteor.Error("dead", "He's dead, Jim!");
console.log(msg)
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment