Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are there any good code metrics options for a Windows Store application written in Javascript/HTML5?

I've rewritten a good portion of a project that a contractor did for us, and I'd like to see how many redundant functions I removed, lines of code deleted, etc. Microsoft says that its built-in Visual Studio tools don't work with Winjs-based projects, and I can't seem to find any third party tools.

Thanks, all.

Here's the link where MS states JS isn't supported: http://msdn.microsoft.com/en-us/library/windows/apps/hh441471.aspx

share|improve this question

1 Answer 1

up vote 0 down vote accepted

Personally, I use JSHint in all my JavaScript projects(windows store apps included) as code quality tool. It works pretty well and catches most of commonly made errors/bad practices.

share|improve this answer
    
Not quite what I was looking for, but helpful. Thanks for your post. –  John Nov 6 '13 at 16:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.