UNPKG

nexgen-magic

Version:

Get the current song played on magic.co.nz

32 lines (22 loc) 639 B
# nexgen-magic Get the current song played on magic.co.nz ## Installation Simplest way to install `nexgen-magic` is to use [npm](https://npmjs.com). Just run `npm install nexgen-magic` which will download `nexgen-magic` and all it's dependencies. ## Usage Simply require `nexgen-magic` in your code ``` var magic = require('nexgen-magic'); ``` ##### Current Song/Track ``` magic.current(function(track) { console.log('Currently playing ' + track.title + ' by ' + track.artist); }); ``` ##### Next Song/Track ``` magic.next(function(track) { console.log('Next song will be ' + track.title + ' by ' + track.artist); }); ```