Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I really like code-coverage reports for my code in node.js. I've already created a node.js module that can inject instrumented code (and mock our require statements) called requiremock

I'm using that in my other module nodecoverage together with the binary version of jsCoverage (windows) to generate code coverage reports, injecting instrumented versions of code with requiremock.

The problems with using jsCoverage are

  1. It needs compilation for the platform, because it's written in C(++), I would like to implement it in JavaScript so it can be used on any platform without compilation.
  2. It writes the instrumented versions of code as files on disk. With requiremock I can generate the instrumented JavaScript files in memory and run those when the original file is required.
  3. jsCoverage does not report code coverage correctly when using function hoisting, and I use that a lot in node.js

So my question is:

What JavaScript parser written in JavaScript should I choose to reimplement jsCoverage as a node.js module?

I have to be able to know the linenumber of the code in the original file, and also know what whitespacing was like.

share|improve this question

1 Answer

up vote 2 down vote accepted

Try esprima. It's awesome. Also node-cover potentially already does have what you need

share|improve this answer

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.