用于比较最小化 Javascript 文件的工具

发布于 2024-12-22 07:30:07 字数 1539 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

苦笑流年记忆 2024-12-29 07:30:07

Pretty Diff 工具只需单击一个按钮即可比较两个缩小的文件或缩小到美化的文件。

http://prettydiff.com/

它的运行方式是首先缩小文件以删除注释,并在运行其 diff 算法之前美化源代码。这是我的工具,所以如果这不能满足您的需要,我会接受请求。

Pretty Diff tool will diff two minified files or a minified to a beautified file with a single button click.

http://prettydiff.com/

It operates by first minifing files to remove comments and the beautifies the source code before running its diff algorithm. This is my tool, so if this does not do what you need I do take requests.

厌倦 2024-12-29 07:30:07

压缩的java脚本文件可能无法直接比较。首先使用 java script beautifier 格式化两个 java script 代码。然后,您可以使用以下任何工具进行比较:

比较代码的工具:

  1. Beyond Compare
  2. Noteapad++ 中提供的比较插件
  3. WinMerge
  4. Prettydiff
  5. Kompare

用于格式化 Javascript 的 工具:
1. JavaScriptBeautifier.com

以上所有工具都可以在互联网上找到,并且可以在google上搜索和下载。

Compressed java script files may not be compared directly. First format both the java script codes using java script beautifier. Then you can compare using any of the below tools:

Tools to compare the code:

  1. Beyond Compare
  2. Compare plugin available in Noteapad++
  3. WinMerge
  4. Prettydiff
  5. Kompare

Tools to Format the Javascript:
1. JavaScriptBeautifier.com

All above tools are available on internet and can be searched and downloaded on google.

丿*梦醉红颜 2024-12-29 07:30:07

我们的 SmartDifferencer 工具使用语言语法而不是文本行来比较代码。通过这样做,它不会受到格式化或缩小的影响或破坏。

它不会打印包含差异的“行”;相反,它打印出不同的代码片段,无论该片段覆盖多行还是仅是当前行中的片段。
所以它可能会做得很好。

每种语言都有一个特定的 SmartDifferencer,特别是 JavaScript 有一个。

Our SmartDifferencer tool compares the code using the language syntax rather than text lines. By doing this, it isn't sensitive to or bollixed by formatting or minification.

It doesn't print "lines" containing differences; rather it prints out the code fragment which is different, whether that fragment covers several lines or is only a fragment in a current line.
So it would probably do a good job of this.

There is a SmartDifferencer specific to each language, and in particular there is one for JavaScript.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文