Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
⭐️ Genius.com API client with lyrics scraper
Version 2.0 is a complete rewrite with async/await.
yarn add lyricist
or
npm install lyricist --save
Older versions of node don't support async/await and will need to use the transpiled version (lyricist/node6), along with promises:
const Lyricist = require('lyricist/node6');
Get an access token at https://genius.com/api-clients.
const lyricist = new Lyricist(accessToken);
Use song()
to fetch a song by ID:
const song = await lyricist.song(714198);
console.log(song.title);
// output: Death with Dignity
lyricist.song(714198).then(song => console.log(song.title));
The Genius API doesn't offer lyrics, but Lyricist can scrape Genius.com for you. Simply provide the fetchLyrics
option like this:
const song = await lyricist.song(714198, { fetchLyrics: true });
console.log(song.lyrics);
// output: Spirit of my silence I can hear you...
Use album()
to look up an album by ID. The Genius API doesn't allow you to search an album by title, but song() will return an album.id
:
const album = await lyricist.album(56682);
console.log('%s by %s', album.name, album.artist.name);
// output: Lanterns by Son Lux
The Genius API doesn't provide tracklists, but Lyricist can scrape Genius.com and return the tracklist for you. Simply provide the fetchTracklist
option like this:
const album = await lyricist.album(56682, { fetchTracklist: true });
console.log(album.songs);
// output: [{ id: 502102, title: 'Alternate World', ... }, { id: 267773, title: 'Lost It To Trying', ... }, ...]
Use artist()
to look up an artist by ID:
const artist = await lyricist.artist(2);
console.log(artist.name);
// output: Jay Z
Use songsByArtist()
to list an artist's songs. Example usage:
const songs = await lyricist.songsByArtist(2);
songsByArtist()
will show 20 results per page by default, and can be as high as 50.
You can provide options as a second parameter. The available options are:
perPage
: Number (default: 20)page
: Number (default: 1)sort
String: 'title' or 'popularity' (default: 'title')Example:
const songs = await lyricist.songsByArtist(2, { page: 2, perPage: 50 });
Take care when fetching lyrics. Use caching and rate-limit your app's requests as much as possible.
Check the Genius.com API docs for more info.
FAQs
Fetches song lyrics using the Genius.com API and website.
The npm package lyricist receives a total of 62 weekly downloads. As such, lyricist popularity was classified as not popular.
We found that lyricist demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.