Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

node-lyrics

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-lyrics - npm Package Compare versions

Comparing version
2.1.0
to
2.1.1
+1
-1
lib/getAlbums.js

@@ -33,3 +33,3 @@ 'use strict';

// Sync: Parsing JSON with try/catch
const artistBody = parseJSON(res.text);
let artistBody = parseJSON(res.text);

@@ -36,0 +36,0 @@ // Return if there are no albums

@@ -42,3 +42,3 @@ 'use strict';

// Sync: Parsing JSON with try/catch
const artistBody = parseJSON(res.text);
let artistBody = parseJSON(res.text);

@@ -45,0 +45,0 @@ // Return if there are no albums

{
"name": "node-lyrics",
"version": "2.1.0",
"version": "2.1.1",
"description": "Get the lyrics to your favorite songs",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -13,2 +13,6 @@ # node-lyrics

$ npm install --save node-lyrics
# OR (CLI)
$ npm install --global node-lyrics
```

@@ -32,2 +36,13 @@

## Usage CLI
```bash
$ lyrics "james blake" retrograde
# > james blake - retrograde [Overgrown]
# > You're on your own,
# > In a world you've grown,
# > ...
```
## v2

@@ -34,0 +49,0 @@ * Supports Promises!