Last active
January 23, 2016 23:54
-
-
Save igara/09f6ac296d00a1e34a5c to your computer and use it in GitHub Desktop.
vorlon.jsを使って端末のリモートデバッグしてみる ref: http://qiita.com/igara/items/d81edf07a4f138cfba68
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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" | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm install --save-dev vorlon | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| node ./node_modules/.bin/vorlon & | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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