如何使用UglifyJS 2 uglify JavaScript?

时间:2013-12-18 08:59:46

标签: javascript uglifyjs2

我尝试使用UglifyJS2 uglify一个简单的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");
  }
}

这是我用来uglify的命令:

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

我收到的错误:

Dot
Error parsing arguments in : sample.js

2 个答案:

答案 0 :(得分:12)

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

  

指定--output-o)以声明输出文件。否则输出转到STDOUT。

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

uglifyjs [input files] [options]

您应该做的是以下内容:

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

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

答案 1 :(得分:3)

2个问题:

首先,命令行uglifyjs的参数解析有一个bug,所以你必须将选项放在最后,或者使用 - 将它们与命令分开。例如:

uglifyjs -c -m foo.js     # Will fail Error parsing arguments in : foo.js 
uglifyjs foo.js -c -m     # Will work, printing the compressed
uglifyjs -c -m -- foo.js  # Will also work

其次,输出默认为标准输出。传递更多js文件作为参数将在minifiying之前连接它们。您可以使用-o指定输出文件,或使用普通的shell重定向运算符(>>>|等。)

uglifyjs -c -m -- foo.js                # Will output the file to stdout
uglifyjs -c -m -- foo.js > foo.min.js   # Will save the file to foo.min.js
uglifyjs -c -m  -o foo.min.js -- foo.js # Will save the file to foo.min.js
uglifyjs -c -m -- foo.js bar.js         # Will concatenate 2 js files