有没有任何工具或方法可以从文件(javascript)中删除空格或减小文件大小?

问题描述 投票:0回答:3

我有大约 400kb 大小的 javascript 文件,该文件非常对齐且格式良好。但我发现如果是一行(大多数 JavaScript),文件大小有很大差异。

所以我想减少它的内存大小,这样它的加载速度会更快一些。请建议我任何从该文件中删除空格的工具或方法?

file whitespace
3个回答
3
投票

尝试http://jscompress.com/在线工具。

什么是jscompress?

JSCompress.com 是一个在线 JavaScript 压缩器,可让您压缩和缩小 JavaScript 文件。压缩的 javascript 文件非常适合生产环境,因为它们通常可以将文件大小减少 30-90%。大多数文件大小的减少是通过删除 Web 浏览器或访问者不需要的注释和额外空白字符来实现的。

为什么我要压缩 Javascript?

压缩 javascript 文件是个好主意的原因有很多:

* Quicker download times for your users.
* Reduced bandwidth consumption of your website.
* Reduced number of HTTP requests on your server when combining many javascript files into one compressed file, thus reducing the server load and allowing more visitors to access your website.
* Comments and whitespace are not needed for javascript execution; Removing them will speed up script execution times.

1
投票

尝试一下YUI Compressor,真的很好用。


0
投票

使用

esbuid
CLI:

esbuild --minify file.js

参见:https://esbuild.github.io/api/#minify

© www.soinside.com 2019 - 2024. All rights reserved.