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

percy-client

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

percy-client - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

README.md

6

dist/main.js

@@ -7,3 +7,4 @@ 'use strict';

var http = require('https');
var http = require('http');
var https = require('https');
var utils = require('./utils');

@@ -64,4 +65,5 @@ var Environment = require('./environment');

this._httpClient = requestPromise;
this._httpModule = this.apiUrl.indexOf('http://') === 0 ? http : https;
// A custom HttpAgent with pooling and keepalive.
this._httpAgent = new http.Agent({ maxSockets: 5, keepAlive: true });
this._httpAgent = new this._httpModule.Agent({ maxSockets: 5, keepAlive: true });
}

@@ -68,0 +70,0 @@

{
"name": "percy-client",
"version": "1.1.0",
"version": "1.1.1",
"description": "JavaScript API client library for Percy (https://percy.io).",

@@ -5,0 +5,0 @@ "main": "dist/main.js",

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

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