c4milo / node-webkit-agent

NodeJS agent for WebKit devtools front-end
http://c4milo.github.io/node-webkit-agent/
1.1k stars 128 forks source link

status of project #6

Closed marcucio closed 12 years ago

marcucio commented 12 years ago

Just asking what the status of the project is? I tried the steps outlines in the readme and all I get is a blank page that looks like the chrome dev tools

c4milo commented 12 years ago

It's working. Make sure to activate the agent first before trying to go to http://c4milo.github.com/node-webkit-agent/19.0.1084.46/inspector.html?host=localhost:1337&page=0

marcucio commented 12 years ago

I got as far as sending the signal to the process and getting "webkit-devtools-agent started on 127.0.0.1:1337" but when I go to:

http://c4milo.github.com/node-webkit-agent/19.0.1084.46/inspector.html?host=(my host):1337&page=0

I get the blank page.

I am guessing I need to replace localhost with the actual host the app is running on

c4milo commented 12 years ago

be aware that the service is being started on the localhost interface, so if you try to do remote profiling you have to change that by setting the environment variable DEBUG_HOST to the public IP address.

marcucio commented 12 years ago

that was the issue, thanks