gpt4 book ai didi

javascript - 如何使用 UglifyJS 2 丑化 JavaScript?

转载 作者:数据小太阳 更新时间:2023-10-29 05:00:14 25 4
gpt4 key购买 nike

我尝试使用 UglifyJS2 来丑化一个简单的 javascript 文件.

文件内容如下:

//this is simply a sample var
var sampleVar = "xyz";

//lots of comments
//this is just another comment
//such things should not be present in javascript
//waiting to see result after uglifying

//this is simply a sample function
function sampleFunction()
{
var sampleLocalVar = "xzx";
if(true)
{
//inserting some sample comments
alert("in if block");
}
else
{
//inserting some sample comments
alert("in else block");
}
}

这是我用来丑化的命令:

uglifyjs -c -m sample.js sample.min.js

我收到的错误:

Dot
Error parsing arguments in : sample.js

最佳答案

您需要指定输出参数(-o--output),如文档所述:

Specify --output (-o) to declare the output file. Otherwise the output goes to STDOUT.

此外,必须首先指定要缩小的文件(或要连接和缩小的文件),如用法所示:

uglifyjs [input files] [options]

你应该做的是:

uglifyjs sample.js -c -m -o sample.min.js

有关从命令行使用 UglifyJS2 的更多信息,see the documentation .

关于javascript - 如何使用 UglifyJS 2 丑化 JavaScript?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20653578/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com