Socket
Socket
Sign inDemoInstall

chrome-debugging-client

Package Overview
Dependencies
Maintainers
2
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chrome-debugging-client - npm Package Compare versions

Comparing version 0.6.7 to 0.6.8

1

dist/codegen/index.d.ts
export * from "./protocol";
export { default as ProtocolCodegen } from "./protocol-codegen";
//# sourceMappingURL=index.d.ts.map

@@ -49,1 +49,2 @@ import * as Protocol from "./protocol";

}
//# sourceMappingURL=protocol-codegen.d.ts.map

@@ -78,1 +78,2 @@ /**

export declare function isNumberDescriptor(desc: Descriptor): desc is INumberDescriptor;
//# sourceMappingURL=protocol.d.ts.map
export * from "./lib/index";
//# sourceMappingURL=index.d.ts.map
import { IAPIClient, IHTTPClient } from "./types";
export default function createAPIClient(httpClient: IHTTPClient): IAPIClient;
//# sourceMappingURL=create-api-client.d.ts.map

@@ -6,1 +6,2 @@ import { IConnection, IDebuggingProtocolClient } from "./types";

};
//# sourceMappingURL=create-debugging-protocol-client.d.ts.map
import { IHTTPClient } from "./types";
export default function createHTTPClient(host: string, port: number): IHTTPClient;
//# sourceMappingURL=create-http-client.d.ts.map

@@ -5,1 +5,2 @@ import { ISession } from "./types";

export declare function createSession(): ISession;
//# sourceMappingURL=create-session.d.ts.map

2

dist/lib/create-session.js

@@ -82,5 +82,5 @@ "use strict";

addDisposable(disposable) {
return disposable;
return this.disposables.add(disposable);
}
}
//# sourceMappingURL=create-session.js.map
import { IConnection, IDebuggingProtocolClient } from "./types";
export default function createTargetConnection(client: IDebuggingProtocolClient, sessionId: string): IConnection;
//# sourceMappingURL=create-target-connection.d.ts.map

@@ -6,1 +6,2 @@ import { IDisposable } from "./types";

export default function createTmpDir(customRoot?: string): Promise<ITmpDir>;
//# sourceMappingURL=create-tmpdir.d.ts.map
export declare function delay(ms: number): Promise<any>;
//# sourceMappingURL=delay.d.ts.map

@@ -7,1 +7,2 @@ import { IDisposable } from "./types";

}
//# sourceMappingURL=disposables.d.ts.map
import { IEventNotifier } from "./types";
export declare function eventPromise<T>(emitter: IEventNotifier, resolveEvent: string, rejectEvent: string): Promise<T>;
//# sourceMappingURL=event-promise.d.ts.map

@@ -5,1 +5,2 @@ export declare const REDUCE_NON_DETERMINISN_FLAGS: string[];

export declare const DEFAULT_FLAGS: string[];
//# sourceMappingURL=flags.d.ts.map
export * from "./types";
export { createSession, SessionCallback } from "./create-session";
export * from "./flags";
//# sourceMappingURL=index.d.ts.map
import { IConnection } from "./types";
export default function openWebSocket(url: string): Promise<IConnection>;
//# sourceMappingURL=open-web-socket.d.ts.map
import { IResolveOptions } from "./types";
export default function resolveBrowser(options?: IResolveOptions): string;
//# sourceMappingURL=resolve-browser.d.ts.map
import { IBrowserProcess, ISpawnOptions } from "./types";
export default function spawnBrowser(executablePath: string, dataDir: string, options?: ISpawnOptions): Promise<IBrowserProcess>;
//# sourceMappingURL=spawn-browser.d.ts.map

@@ -134,1 +134,2 @@ /**

}
//# sourceMappingURL=types.d.ts.map

@@ -1338,1 +1338,2 @@ /**

}
//# sourceMappingURL=v8.d.ts.map

@@ -109,4 +109,4 @@ import createAPIClient from "./create-api-client";

private addDisposable<T extends IDisposable>(disposable: T): T {
return disposable;
return this.disposables.add(disposable);
}
}
{
"name": "chrome-debugging-client",
"version": "0.6.7",
"version": "0.6.8",
"description": "An async/await friendly Chrome debugging client with TypeScript support",

@@ -5,0 +5,0 @@ "keywords": [

Sorry, the diff of this file is not supported yet

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

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