bugger-agents

1.1.2 • Public • Published

bugger-agents

The Chrome Remote Debugging Protocol implemented for node. This allows you to do things like this:

// After starting a node process with --debug-brk
var Agents =
  require('bugger-agents').attachToPort(5858);
 
// Chaining has the special meaning of "in series"
Agents.Debugger.enable().resume();
 
// Equivalent, explicit:
Agents.Debugger.enable().then(function() {
  // Promise is bound to the agent by default, so this.resume() would work
  Agents.Debugger.resume();
});

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.1.2
    2
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.1.2
    2
  • 1.1.1
    1
  • 1.1.0
    1
  • 1.0.0
    1

Package Sidebar

Install

npm i bugger-agents

Weekly Downloads

5

Version

1.1.2

License

MIT

Last publish

Collaborators

  • jkrems