Socket
Socket
Sign inDemoInstall

melody-api

Package Overview
Dependencies
99
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    melody-api

Quickly fetch the lyrics of a song by its artist,title or some part of lyrics.


Version published
0
Maintainers
1
Created
Weekly downloads
 

Readme

Source

melody-lyrics-api

This api fetches the lyrics of a song by its artist,title and part of lyrics.

Contributors

Alen Yohannan

Usage

CommonJS

const { Lyrics } = require('melody-api')

const app = new Lyrics();
app.getLyrics('roar katy perry').then((response) => {
    return console.log(response);
})
.catch((error) => {
    return console.log(error);
})

ESModule || TypeScript

import Lyrics from 'melody-api'

const app = new Lyrics();
app.getLyrics('roar katy perry').then((response) => {
    return console.log(response);
})
.catch((error) => {
    return console.log(error);
})

Keywords

FAQs

Last updated on 15 Sep 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc