开发者

Javascript source code analysis ( specifically duplication checking )

Partial duplic开发者_运维技巧ate of this

Notes: I already use JSLint extensively via a tool I wrote that scans in intervals my current project directory for recently updated/created .js files. It's drastically improved productivity for me and I doubt there is anything as good as JSLint for the price (it's free).

That said, is there any analysis tool out there that can find repetitive or near-duplicate code blocks, the goal being to make it easier to find opportunities to consolidate large files or small/medium sized projects?


May not be exactly what your after, but Google's Javascript optimizer is worth a look.


Our CloneDR is a tool for finding exact and near-miss cloned code blocks for a variety of languages. It will find duplicates in the same file or across literally thousands of files if you have them. You don't have to provide it with any guidance; it can find the cloned code by itself. And it won't be fooled by different indentation or line breaks, or even consistent renaming of identifiers

It does support JavaScript, even if it isn't clear from the website.

You can see sample clone reports for a variety of langauges at the website.


You may want to have a look at jsinspect.

jsinspect ./src

It will print a list of code blocks that are either identical or structurally very similar.

And there's also jscpd.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜