Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-spotilocal

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-spotilocal - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

4

package.json
{
"name": "node-spotilocal",
"version": "1.0.5",
"description": "Simple wrapper for Spotify local webserver.",
"version": "1.0.6",
"description": "[DEPRECATED] Simple wrapper class for Spotify local webserver.",
"main": "src/index.js",

@@ -6,0 +6,0 @@ "files": [

@@ -1,2 +0,2 @@

# node-spotilocal
# [DEPRECATED] node-spotilocal

@@ -8,3 +8,3 @@ [![npm](https://img.shields.io/npm/v/node-spotilocal.svg?style=flat)](https://www.npmjs.com/package/node-spotilocal)

Simple wrapper for [Spotify](https://www.spotify.com/) app local webserver.
Simple wrapper class for [Spotify](https://www.spotify.com/) app local webserver.

@@ -11,0 +11,0 @@ ---

/**
* node-spotilocal v1.0.5 (2018-06-02)
* [DEPRECATED]
* node-spotilocal v1.0.6 (2018-09-15)
* Copyright 2018 Oliver Findl

@@ -77,6 +78,6 @@ * @license MIT

headers: {
origin: "https://open.spotify.com"
origin: "https://open.spotify.com/"
}
});
if(res.hasOwnProperty("status") && [200, 304].indexOf(res.status) > -1 && res.hasOwnProperty("data")) return res.data;
if(res.hasOwnProperty("status") && [200, 204, 304].includes(res.status) && res.hasOwnProperty("data")) return res.data;
else throw new Error("Bad response!");

@@ -83,0 +84,0 @@ } catch(err) {

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc