1.0.1 • Published 3 years ago

@raflymln/musixmatch-lyrics v1.0.1

Weekly downloads
2
License
ISC
Repository
-
Last release
3 years ago

Usage:

const Musixmatch = require('@raflymln/musixmatch-lyrics')
var result;

try {
    result = Musixmatch.find('Secret Number - Who Dis')
} catch (e) {
    throw e;
}

Result Example:

{
  title: 'Who Dis?',
  artists: 'SECRET NUMBER',
  lyrics: 'Who this?\n' +
    'Hello? Hello?\n' +
    'Who this? Who this?\n' +
    '\n' +
    '어딜 가나 다들 내가 젤 궁금하죠\n' +
    'Who is this? Who is this?\n' +
    '이리저리 둘러봐도 가장 눈부셔\n' +
    'Who is this? Who is this? Yeah\n' +
    '따라오는 시선 눈을 못 떼\n' +
    '어머 bling, bling 빛이 난대\n' +
    '마치 어느 순간 leap of faith\n' +
    '홀린 듯 빠져 느껴 tension\n' +
    '\n' +
    'Sometimes I feel like that 심장이 뜨겁게\n' +
    '타오르는 느낌 날아갈 것만 같아 ooh-ah-ah-I\n' +
    "I'm gonna be a star 웃음 뒤 가려진\n" +
    "강렬한 energy 깊어져 don't be surprised\n" +
    'Oh 아찔하게 보여줘 who this?\n' +
    '\n' +
    '난 이대로 너무 좋은걸\n' +
    '바꾸려 들지 마 내 스타일대로 살아 (who this?)\n' +
    '당당한 내 매력에 이미 넌 빠져들어 baby\n' +
    'Oh 아찔하게 보여줘 who this?\n' +
    '\n' +
    "뭘 원해 stranger, I'm not a danger\n" +
    '이런들 어떠니 (who this?)\n' +
    "I don't even care, I'll be the good girl\n" +
    "Baby, it's that easy (who this?)\n" +
    "뭘 원해 stranger, I'm not a danger\n" +
    '이런들 어떠니 (who this?)\n' +
    "I don't even care, I'll be the good girl\n" +
    "Baby, it's that easy (who this?)\n" +
    '\n' +
    'Do you know me? 빠져들 수밖에 없는걸\n' +
    'Who is this? Who is this?\n' +
    '향수보단 샴푸 향기 뭔가 다른걸\n' +
    'Who is this? Who is this? Yeah\n' +
    '순간 쏟아지는 line of sight\n' +
    '사람들의 시선 신경 안 써\n' +
    '엄만 왜 이렇게 날 예쁘게\n' +
    "낳아서 곤란해 I'm so tired\n" +
    '\n' +
    'Sometimes I feel like that 심장이 뜨겁게\n' +
    '타오르는 느낌 날아갈 것만 같아 ooh-ah-ah-I\n' +
    "I'm gonna be a star 웃음 뒤 가려진\n" +
    "강렬한 energy 깊어져 don't be surprised\n" +
    'Oh 아찔하게 보여줘 who this?\n' +
    '\n' +
    '난 이대로 너무 좋은걸\n' +
    '바꾸려 들지 마 내 스타일대로 살아 (who this?)\n' +
    '당당한 내 매력에 이미 넌 빠져들어 baby\n' +
    'Oh 아찔하게 보여줘 who this?\n' +
    '\n' +
    'Who this, who this?\n' +
    'Who this, this, this, this, who this?\n' +
    '\n' +
    "Yeah, it's that easy boy 어차피 내게 끌릴걸\n" +
    '내 식대로 chic 하게 굴어도 내게 빠져들잖아\n' +
    'Who-ooh, who this?\n' +
    '\n' +
    '내 맘대로 내 느낌대로\n' +
    '누가 뭐라 해도 난 신경 쓰지 않아 (who this?)\n' +
    '당당한 내 매력에 이미 넌 빠져들어 baby\n' +
    'Oh 아찔하게 보여줘 who this?\n' +
    '\n' +
    "뭘 원해 stranger, I'm not a danger\n" +
    '이런들 어떠니 (who this?)\n' +
    "I don't even care, I'll be the good girl\n" +
    "Baby, it's that easy (who this?)\n" +
    "뭘 원해 stranger, I'm not a danger\n" +
    '이런들 어떠니 (who this?)\n' +
    "I don't even care, I'll be the good girl\n" +
    "Baby, it's that easy (who this?)",
  albumImg: 'http://s.mxmcdn.net/images-storage/albums4/1/8/6/8/4/2/49248681_350_350.jpg',
  url: 'https://www.musixmatch.com/lyrics/SECRET-NUMBER/Who-Dis'
}