New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

chrome-remote-cache

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chrome-remote-cache - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

21

package.json
{
"name": "chrome-remote-cache",
"version": "0.1.1",
"version": "0.1.2",
"description": "Caching system for chrome devtools protocol",

@@ -20,17 +20,11 @@ "keywords": [

"types": "src/index.d.ts",
"scripts": {
"test": "ava",
"clean": "rimraf {test,lib,src,scripts}/*.{d.ts,js,js.map} ./index.{js,d.ts,js.map}",
"rebuild": "npm run clean && tsc",
"prepare": "npm run clean && tsc && ava"
},
"author": "",
"license": "ISC",
"dependencies": {
"@u4/chrome-remote-interface": "^0.4.6",
"ioredis": "^5.2.3",
"@u4/chrome-remote-interface": "^0.4.8",
"ioredis": "^5.2.4",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@types/node": "^18.8.4",
"@types/node": "^18.11.9",
"ava": "3.15.0",

@@ -57,3 +51,8 @@ "rimraf": "^3.0.2",

"src/*.d.ts"
]
],
"scripts": {
"test": "ava",
"clean": "rimraf {test,lib,src,scripts}/*.{d.ts,js,js.map} ./index.{js,d.ts,js.map}",
"rebuild": "npm run clean && tsc"
}
}
import { CacheStat } from './CacheStat';
import { Chrome } from "@u4/chrome-remote-interface";
import { Chrome } from '@u4/chrome-remote-interface';
import CacheManager from './CacheManager';

@@ -4,0 +4,0 @@ export declare class ChromeRemoteCache {

@@ -68,3 +68,3 @@ "use strict";

return;
let prefix = PREFIXS[type];
const prefix = PREFIXS[type];
this.#logfnc(`${prefix}: ${textUrl}`);

@@ -90,3 +90,3 @@ }

catch (e) {
console.log(`failed to continueRequest ${requestId}`);
console.log(`failed to continueRequest ${requestId} err:${e}`);
}

@@ -99,3 +99,3 @@ };

catch (e) {
console.log(`failed to failRequest ${requestId}`);
console.log(`failed to failRequest ${requestId} err:${e}`);
}

@@ -196,3 +196,5 @@ };

}
catch (e) { }
catch (_e) {
// ignore
}
if (!resp) {

@@ -199,0 +201,0 @@ resp = { body: '', base64Encoded: false };

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