Lyrics-fetcher is a simple interface that provides lyrics from http://makeitpersonal.co/ directly into your js file or terminal.
$ sudo npm install -g lyrics-fetcher
$ lyr 'Sting' 'Shape of my heart'
var lyr = require('lyrics-fetcher');
lyr.fetch('Sting', 'Shape of my heart', function (err, lyrics) {
console.log(err || lyrics);
});
- artist: String representing the name of the artist.
- song: String representing the name of the song.
- callback: the callback function.
$ npm test
0.0.1
- First release
0.0.0
- First working version
See the LICENSE file.