Last active
July 21, 2017 11:19
-
-
Save zoetrope69/3565f428279dead3739d0725fbb1b813 to your computer and use it in GitHub Desktop.
last.fm stream example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { LastFmNode } = require('lastfm'); | |
const lastfm = new LastFmNode({}); | |
lastfm.stream('zaccolley').on('nowPlaying', track => { | |
console.log(track); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment