Skip to content

Instantly share code, notes, and snippets.

@igara
Last active January 23, 2016 23:54
Show Gist options
  • Save igara/09f6ac296d00a1e34a5c to your computer and use it in GitHub Desktop.
Save igara/09f6ac296d00a1e34a5c to your computer and use it in GitHub Desktop.
vorlon.jsを使って端末のリモートデバッグしてみる ref: http://qiita.com/igara/items/d81edf07a4f138cfba68
{
"baseURL": "",
"useSSLAzure":false,
"useSSL": false,
"SSLkey": "../cert/server.key",
"SSLcert": "../cert/server.crt",
"includeSocketIO": true,
"activateAuth": false,
"username": "",
"password": "",
"plugins": [
{ "id": "CONSOLE", "name": "Interactive Console", "panel": "bottom", "foldername": "interactiveConsole", "enabled": true },
{ "id": "DOM", "name": "Dom Explorer", "panel": "top", "foldername": "domExplorer", "enabled": true },
{ "id": "MODERNIZR", "name": "Modernizr", "panel": "bottom", "foldername": "modernizrReport", "enabled": true },
{ "id": "OBJEXPLORER", "name": "Obj. Explorer", "panel": "top", "foldername": "objectExplorer", "enabled": true },
{ "id": "XHRPANEL", "name": "XHR", "panel": "top", "foldername": "xhrPanel", "enabled": true },
{ "id": "NGINSPECTOR", "name": "Ng. Inspector", "panel": "top", "foldername": "ngInspector", "enabled": false },
{ "id": "NETWORK", "name": "Network Monitor", "panel": "top", "foldername": "networkMonitor", "enabled": true },
{ "id": "RESOURCES", "name": "Resources Explorer", "panel": "top", "foldername": "resourcesExplorer", "enabled": true },
{ "id": "DEVICE", "name": "My Device", "panel": "top", "foldername": "device", "enabled": true },
{ "id": "UNITTEST", "name": "Unit Test", "panel": "top", "foldername": "unitTestRunner", "enabled": true },
{ "id": "BABYLONINSPECTOR", "name": "Babylon Inspector", "panel": "top", "foldername": "babylonInspector", "enabled": false },
{ "id": "WEBSTANDARDS", "name": "Best practices", "panel": "top", "foldername": "webstandards", "enabled": true }
],
"port": 1337,
"enableWebproxy" : true,
"baseProxyURL": "",
"proxyPort" : 5050,
"proxyEnvPort": false,
"vorlonServerURL": "http://[ホスト名]:1337",
"vorlonProxyURL": "http://[ホスト名]:5050"
}
npm install --save-dev vorlon
node ./node_modules/.bin/vorlon &
<script src="http://[ホスト名]:1337/vorlon.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment