inspector-proxy
node inspector proxy
Last updated 4 years ago by wanghx .
MIT · Repository · Bugs · Original npm
$ cnpm install inspector-proxy 
SYNC missed versions from official npm registry.

inspector-proxy

node inspector proxy

NPM version Build Status Appveyor status Coverage Status

Usage

$ npm i inspector-proxy -g

CLI

# base usage
$ inspector-proxy ./test.js

# appoint port
$ inspector-proxy --proxy=9228 --debug=9888 ./test.js
# exec by node
$ node --inspect ./test.js

# start a inspect proxy in other terminal
$ inspector-proxy --proxy=9228

work with nodemon

$ nodemon --exec 'inspector-proxy ./test.js'

Using in code

const InspectorProxy = require('inspector-proxy');
const cfork = require('cfork');
const proxy = new InspectorProxy({ port: 9229 });

// use cfork to inspect file
cfork({
  exec: './test.js',
  execArgv: [ '--inspect' ],
  count: 1,
  refork: true,
}).on('fork', worker => {
  let port;
  // match debug port from argv
  worker.process.spawnargs
    .some(arg => {
      let matches;
      // node-6: --inspect=9888
      // node-8: --inspect-port=9888
      if (arg.startsWith('--inspect') && (matches = arg.match(/\d+/))) {
        port = matches[0];
        return true;
      }
      return false;
    });

  proxy.start({ debugPort: port })
    .then(() => {
      console.log(`\nproxy url: ${proxy.url}\n`);
    });
});

Log Explanation

# inspector server opened
9229 opened

# inspector server closed
9229 closed

# inspector has been attached
Debugger attached

Debug log

$ DEBUG=*-proxy inspector-proxy ./test.js

License

MIT


Current Tags

  • 1.2.2                                ...           latest (4 years ago)

2 Versions

  • 1.2.2                                ...           4 years ago
  • 1.2.1                                ...           8 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (5)
Dev Dependencies (10)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org