musixmatchlyrics
v0.0.1
Published
Get all Lyrics from musixmatch website without API key
Readme
musixmatch
This module will help you to get API response from website https://www.musixmatch.com/
examples
const mx = require('musixmatchlyrics')
mx.tracks('adele', songs => {
console.log(songs)
})const mx = require('musixmatchlyrics')
mx.autocomplete('Rolling in the Deep', songs => {
console.log(songs)
})const mx = require('musixmatchlyrics')
mx.search('Rolling in the Deep', songs => {
console.log(songs)
})mx.search('Rolling in the Deep', songs => {
mx.get(songs[0].url, lyric => {
console.log(lyric)
})
})