UNPKG
song-lyrics-api
Version:
latest (1.1.0)
1.1.0
A Lyrics API. Provides you lyrics of a song.
github.com/s0ftik3/lyrics-api
s0ftik3/lyrics-api
song-lyrics-api
/
example
/
app.js
13 lines
(12 loc)
•
293 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
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); })