Languages

Menu
Sites
Language
Is there a way to run web-app in debug mode on remote device from CLI?

I know that Tizen SDK and Studio are able to do it.

But CLI documentation hasn't any ways to run app in debug mode.

Maybe someone know the solution?

Responses

4 Replies
Armaan-Ul- Islam

Agree, CLI Documentations mentioned nothing about debugging an application.

 

Tizen Web Application Debugging tool: 'Remote web inspector' is Basically Chrome DevTool. I know a way to launch chrome devtool from terminal, May have some limitations than (Tizen Studio -> Debug As)

 

$ cd <tizen-workspace>/<project-dir>
$ google-chrome --auto-open-devtools-for-tabs index.html    //(or your file name)

 

Make sure you have Google Chrome installed in your machine. Pleas check these documentations, May provide you some idea.

Chrome DevTools Documentations

https://developer.tizen.org/development/tizen-studio/web-tools/debugging-your-app/web-inspector

Bohdan Koretskyi

Thank you, but it's something different.

When app works in debug mode TV runs seperate server on 7011 port for debug.

Armaan-Ul- Islam

You're Welcome. Yes, I know it's quite different.

But for now, As far as I've seen the Public documentations, Tizen Command Line Interface doesn't have any 'Debug' command. Please Share on this post here, If you achieve  some progress.

Antonín Křivohlavý

Have you figured how to run debug web applications with Chrome DevTools from CLI? I am trying to do the same like Bohdan Koretskyi wrote.