0.0.1 • Published 6 years ago

musixmatchlyrics v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

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)
    })
})