Socket
Socket
Sign inDemoInstall

fast-azure-storage

Package Overview
Dependencies
5
Maintainers
8
Versions
31
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.3.1 to 3.0.0

lib/xml-parser.js

1

lib/queue.js

@@ -5,3 +5,2 @@ 'use strict';

var debug = require('debug')('azure:queue');
var Promise = require('promise');
var querystring = require('querystring');

@@ -8,0 +7,0 @@ var crypto = require('crypto');

@@ -5,3 +5,2 @@ 'use strict';

var debug = require('debug')('azure:table');
var Promise = require('promise');
var querystring = require('querystring');

@@ -401,4 +400,6 @@ var crypto = require('crypto');

// Construct error object
var err = new Error(message);
// Construct error object, capturing only the first line in the
// error message, as subsequent lines from Azure are usually just
// a requestId and timestamp.
var err = new Error(message.split('\n')[0]);
err.name = code + 'Error';

@@ -413,2 +414,3 @@ err.code = code;

err.requestBody = json;
err.message = message;

@@ -415,0 +417,0 @@ debug("Error code: %s (%s) for %s %s on retry: %s",

'use strict';
var Promise = require('promise');
var https = require('https');

@@ -5,0 +4,0 @@ var crypto = require('crypto');

{
"name": "fast-azure-storage",
"version": "2.3.1",
"version": "3.0.0",
"author": "Jonas Finnemann Jensen <jopsen@gmail.com>, Elena Solomon <elenasolomon28@gmail.com>",

@@ -21,16 +21,18 @@ "description": "Fast client library for azure storage services",

"engines": {
"node": ">=4"
"node": ">=8"
},
"dependencies": {
"debug": "^3.1.0",
"pixl-xml": "^1.0.13",
"promise": "^8.0.1"
"debug": "^4.1.1",
"xml2js": "^0.4.19"
},
"optionalDependencies": {
"libxmljs": "^0.19.5"
"resolutions": {
"yuidocjs/**/request": "^2.88.0",
"yuidocjs/**/fresh": "^0.5.2",
"yuidocjs/**/forwarded": "^0.1.2",
"yuidocjs/**/mime": "^1.4.1"
},
"devDependencies": {
"jsdoc": "^3.5.5",
"mocha": "^4.0.1",
"typed-env-config": "^1.1.1",
"jsdoc": "^3.6.2",
"mocha": "^6.1.4",
"typed-env-config": "^3.0.0",
"yuidoc-lucid-theme": "jonasfj/yuidoc-lucid-theme",

@@ -37,0 +39,0 @@ "yuidocjs": "^0.10.2"

@@ -137,6 +137,3 @@ Fast Azure Storage Client for Node.js

--------------------------
The Azure Storage Queue client aims at interfacing Azure Queue Storage
and handling all the XML parsing using `libxmljs` if available, if `libxmljs`
isn't available it'll fall-back to use `pixl-xml` which is a pure Javascript,
but also a tiny bit slower.
The Azure Storage Queue client aims at interfacing Azure Queue Storage.

@@ -237,2 +234,2 @@ Simple example of queue and message creation.

* `Blob#appendBlock(container, blob, options, content)`
* `Blob#sas(container, blob, options)`
* `Blob#sas(container, blob, options)`

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc