node-webkit-agent icon indicating copy to clipboard operation
node-webkit-agent copied to clipboard

NodeJS agent for WebKit devtools front-end

Results 16 node-webkit-agent issues
Sort by recently updated
recently updated
newest added

Hi, I was looking at global objects and I've found the global.data object. {"method":"Runtime.evaluate","params":{"expression":"JSON.stringify(global.data)","objectGroup":"console","includeCommandLineAPI":true,"doNotPauseOnExceptionsAndMuteConsole":false,"returnByValue":false,"generatePreview":true},"id":82} I suppose it is node-webkit-agent specific. Can't it be kept private? I have no time now...

In issue [106252002](https://codereview.chromium.org/106353002/) setRecordingProfile was removed from DevTools front ends as an interface. According to an email exchange I had, it's been replaced by '... Profile.consoleProfileStarted/consoleProfileFinished events to signal front-end...

I can programmatically start and stop profiling using constructions like this: ``` agent.loadedAgents["Profiler"].start({}, () ->) ``` The v8-profiler [`startProfiling` function](https://github.com/c4milo/node-webkit-agent/blob/master/lib/v8-profiler.js#L212) supports providing a name for a profile, but the [Profiler...

In [v8-profiler.js](https://github.com/c4milo/node-webkit-agent/blob/master/lib/v8-profiler.js) it seems like [startProfiling](https://github.com/c4milo/node-webkit-agent/blob/master/lib/v8-profiler.js#L212) sets the default name to be ``` name = 'org.nodejs.profiles.cpu.user-initiated.' + (cpuCache.length + 1); ``` Meanwhile, [stopProfiling](https://github.com/c4milo/node-webkit-agent/blob/master/lib/v8-profiler.js#L220) sets the default name to be ''....

Would be handy if we could save and load profiles. This doesn't seem to be working at the moment - nothing happens when I click the option. Is this something...

Bumps [ws](https://github.com/websockets/ws) from 7.2.0 to 7.5.10. Release notes Sourced from ws's releases. 7.5.10 Bug fixes Backported e55e5106 to the 7.x release line (22c28763). 7.5.9 Bug fixes Backported bc8bd34e to the...

dependencies