在 Javascript 构建过程中计算 CRAP 指标的简单方法是什么?
我是 CRAP 指标的粉丝,并用它来监控我的 C# 和 Java 项目。
我想为我不断增长的 Javascript 代码库做同样的事情。
是否有现有流程可以轻松集成到我的 Javascript 构建流程中?
I'm a fan of the CRAP metric, and use it to monitor code quality for my C# and Java projects.
I'd like to do the same for my growing Javascript codebase.
Is there an existing process that makes this easy to integrate into my Javascript build process?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
CRAP 公式为:
因此,您需要 计算圈复杂度 和 计算测试代码覆盖率(或此处)。
The CRAP formula is:
So, you need to calculate the cyclomatic complexity and calculate the test code coverage (or here).
jshint 计算圈复杂度,请参见 http://www.jshint.com/docs/ 参数 maxcomplexity。
我不知道如何检索结果,但您可以查看 jshint 源。
希望有帮助
jshint calculates the cyclomatic complexity, see http://www.jshint.com/docs/ parameter maxcomplexity.
I don't know, how you can retrieve the results, but you might look into the jshint sources.
Hope that helps