Serverside JS coverage for IntelliJ

Is there a way to run code coverage without browser in intelliJ?

http://www.jetbrains.com/webstorm/webhelp/monitoring-code-coverage-for-javascript.html This is only coverage tutorial by Jetbrains, but both of these require a browser, so i can't test my Node.js code. I bet i'm not the only one who want's a coverage report of their Node.js code using IntelliJ :)

Karma and JsTestDriver seems both to run tests in browser so no Node.js code can be tested with those. I can anyways run mocha tests straight from idea, but without coverage.

There is no such feature in WebStorm. Please vote for WEB-10373

apparently regarding to this post: http://blog.jetbrains.com/webstorm/2013/11/webstorm-7-0-2-is-available/ and a comment by developer, it is not possible to get code coverage reports with IntelliJ's/Webstorm's mocha test runner.

anyways in the meantime here is a good blog posts to have mocha+istanbul coverage reports for nodejs code in html format: http://www.clock.co.uk/blog/npm-module-code-coverage-in-2-simple-steps For me, it is currently good enough, even though the ide integration would be super!