2

I am writing in javascript for windows (and also in wsf using javascript and vbscript) a desktop script not for internet and not using any explorer. I need tool for debugging (free one).

Does someone can recommend on one ?

Thanks

SLaks
891k182 gold badges1.9k silver badges2k bronze badges
asked Feb 14, 2010 at 17:48
0

4 Answers 4

1

I'm assuming you are creating WSH scripts based on your description. In order to debug WSH JavaScripts, start your script with wscript.exe /d path to WSH file after that, whenever an exception is going to occur, you are going to be presented with a choice to debug the script with Visual Studio or Microsoft Script Debugger (free). If you just want to step through the code start your script with wscript.exe /d /x path to WSH file this will cause an exception right at the begging of your script execution. More information here

answered Feb 14, 2010 at 18:53
Sign up to request clarification or add additional context in comments.

Comments

1

Aptana Studio is a great Eclipse extension and can also debug Javascript

answered Feb 14, 2010 at 18:06

Comments

1

I've heard Firebug Lite could do this? That's probably not what you're looking for still.

answered Feb 14, 2010 at 18:09

Comments

0

From the question, it sounds like you are trying to make an AJAX app that perhaps loads from local javascript + HTML.

That said, if it is OK to use Firefox as the web client, you might try Firebug. It is an excellent javascript debugger. It lets you do usual step / breakpoint things, inspect variables, and display the current page as a DOM model to help see what your jQuery (or Prototype, in my case) queries will find.

answered Feb 14, 2010 at 18:07

1 Comment

No, he's writing for the local Windows desktop environment.

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.