Auto merge mandatory file pr This pr is auto merged as it contains a mandatory file and is opened for more than 10 days.
Auto merge mandatory file pr
This pr is auto merged as it contains a mandatory file and is opened for more than 10 days.
Launcher for Microsoft Edge Diagnostics Adapter to make it simpler to start an instance of the Edge with diagnostics enabled.
npm install edge-diagnostics-launch
{ adapterPath: '', // Optional, override adaptor path port: 9222 // Optional, override socket port }
var launch = require('edge-diagnostics-launch') var options = { adapterPath: '', // Optional, override adaptor path port: 9222 // Optional, override socket port } // launch(<url>, <options>, callback) var edge = launch('http://microsoft.com', options, function(err) { if (err) { console.log('Something went wrong when starting Edge', err) } else { console.log('Edge launched. Go connect') } }) edge.on('exit', function(code) { console.log('Edge has excited with code', code) }) // stdout + stderr streams from adaptor edge.stdout.on('data', function(data) { console.log('edge.stdout', data) }) edge.stderr.on('data', function(data) { console.log('edge.stderr', data) })
MIT.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
edge-diagnostics-launch
Launcher for Microsoft Edge Diagnostics Adapter to make it simpler to start an instance of the Edge with diagnostics enabled.
Installation
npm install edge-diagnostics-launchOptions
Usage
License
MIT.
Code of Conduct
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.