UNPKG

song-lyrics-api

Version:

A Lyrics API. Provides you lyrics of a song.

13 lines (12 loc) 293 B
const Lyrics = require('../src/lyrics'); const lyrics = new Lyrics(); /** * Example of the method getLyrics */ lyrics.getLyrics('Hot N Cold') .then((response) => { return console.log(response); }) .catch((error) => { return console.log(error); })