Skip to content

jaisonschmidt/lyricsovh-lib

Repository files navigation

Lyrics-ovh

A simple library that works with lyrics.ovh API. You can get suggests and lyrics over artist and music name.

Installation

Use the package manager NPM to install Lyrics-ovh.

npm i lyricsovh-lib

Usage

<script src="lyrics-ovh-js.min.js"></script>
<script>
    const lyrics = new LyricsOvh()

    lyrics
        .getLyric('Coldplay', 'Adventure of a Lifetime')
        .then(res => console.log(res.lyrics))

    lyrics.getSuggest('Coldplay')
        .then(res => console.log(res.data))
</script>

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

About

A simple lib to interact with lyricsovh API made using TDD, Webpack and available in NPM

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published