Reputation: 1934
How do i access the javascript console from the mobile device deployment of a MeteorJS app?
Is it even possible?
Upvotes: 1
Views: 104
Reputation: 4113
For iOS:
You can now inspect element just like you're used to doing it.
For android follow the instructions here - https://developer.chrome.com/devtools/docs/remote-debugging
Upvotes: 0
Reputation: 1016
In android development you can use the chrome navigator
https://developer.chrome.com/devtools/docs/remote-debugging
Upvotes: 0
Reputation: 2643
You can do such things with ios simulator and Android Eclipse for example.
Once you have a device running, you can access the console, DOM inspector etc.
EG with ios simulator - this will open up dev tools:
1) In the simulator, visit a web address in safari.
1) In regular Safari, go to preferences > advanced.
2) In regular Safari preferences, go to Develop > iPhone simulator > yourWebpage
Upvotes: 1