Socket
Socket
Sign inDemoInstall

node-lyrics-api

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-lyrics-api

Grab lyrics for any song.


Version published
Maintainers
1
Weekly downloads
5

Weekly downloads

Readme

Source

node-lyrics-api

Grab lyrics for any song.

Simply a wrapper around the api located here, so visit there for more information on the API itself.

This is a simple API to work with.

const lyrics = require('node-lyrics-api');

let ourSong = await lyrics('our song');

if(ourSong.status.failed) return console.log('Bad Response');

// show our data

console.log(ourSong.content[0].lyrics);

// or

lyrics('our song').then(l => console.log(l.content[0].lyrics));

Keywords

FAQs

Last updated on 25 Apr 2020

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