yuicompressor java_yuicompressor

yuicompressor java_yuicompressorYUICompressor-TheYahoo!JavaScriptandCSSCompressorTheYUICompressorisaJavaScriptcompressorwhich,inadditiontoremovingcommentsandwhite-spaces,obfuscateslocalvariablesusingthesma…

大家好,又见面了,我是你们的朋友全栈君。

YUI Compressor – The Yahoo! JavaScript and CSS Compressor

The YUI Compressor is a JavaScript compressor which, in addition to removing

comments and white-spaces, obfuscates local variables using the smallest

possible variable name. This obfuscation is safe, even when using constructs

such as ‘eval’ or ‘with’ (although the compression is not optimal in those

cases) Compared to jsmin, the average savings is around 20%.

The YUI Compressor is also able to safely compress CSS files. The decision

on which compressor is being used is made on the file extension (js or css)

Building

ant

Testing

./tests/suite.sh

Node.js Package

You can require compressor in a Node.js package and compress files and strings in async.

It still uses Java under the hood

npm i yuicompressor

var compressor = require(‘yuicompressor’);

compressor.compress(‘/path/to/file or String of JS’, {

//Compressor Options:

charset: ‘utf8’,

type: ‘js’,

nomunge: true,

‘line-break’: 80

}, function(err, data, extra) {

//err If compressor encounters an error, it’s stderr will be here

//data The compressed string, you write it out where you want it

//extra The stderr (warnings are printed here in case you want to echo them

});

Options:

charset // defaults to ‘utf8’

type // defaults to ‘js’

line-break

nomunge

preserve-semi

disable-optimizations

TODO

Better Docs

Help Pages

Build Status

yuicompressor.svg?branch=master

Global Options

-h, –help

Prints help on how to use the YUI Compressor

–line-break

Some source control tools don’t like files containing lines longer than,

say 8000 characters. The linebreak option is used in that case to split

long lines after a specific column. It can also be used to make the code

more readable, easier to debug (especially with the MS Script Debugger)

Specify 0 to get a line break after each semi-colon in JavaScript, and

after each rule in CSS.

–type js|css

The type of compressor (JavaScript or CSS) is chosen based on the

extension of the input file name (.js or .css) This option is required

if no input file has been specified. Otherwise, this option is only

required if the input file extension is neither ‘js’ nor ‘css’.

–charset character-set

If a supported character set is specified, the YUI Compressor will use it

to read the input file. Otherwise, it will assume that the platform’s

default character set is being used. The output file is encoded using

the same character set.

-o outfile

Place output in file outfile. If not specified, the YUI Compressor will

default to the standard output, which you can redirect to a file.

Supports a filter syntax for expressing the output pattern when there are

multiple input files. ex:

java -jar yuicompressor.jar -o ‘.css$:-min.css’ *.css

… will minify all .css files and save them as -min.css

-v, –verbose

Display informational messages and warnings.

JavaScript Only Options

–nomunge

Minify only. Do not obfuscate local symbols.

–preserve-semi

Preserve unnecessary semicolons (such as right before a ‘}’) This option

is useful when compressed code has to be run through JSLint (which is the

case of YUI for example)

–disable-optimizations

Disable all the built-in micro optimizations.

Notes

If no input file is specified, it defaults to stdin.

Supports wildcards for specifying multiple input files.

The YUI Compressor requires Java version >= 1.5.

It is possible to prevent a local variable, nested function or function

argument from being obfuscated by using “hints”. A hint is a string that

is located at the very beginning of a function body like so:

function fn (arg1, arg2, arg3) {

“arg2:nomunge, localVar:nomunge, nestedFn:nomunge”;

var localVar;

function nestedFn () {

….

}

}

The hint itself disappears from the compressed file.

C-style comments starting with /*! are preserved. This is useful with

comments containing copyright/license information. As of 2.4.8, the ‘!’

is no longer dropped by YUICompressor. For example:

/*!

* TERMS OF USE – EASING EQUATIONS

* Open source under the BSD License.

* Copyright 2001 Robert Penner All rights reserved.

*/

remains in the output, untouched by YUICompressor.

Modified Rhino Files

YUI Compressor uses a modified version of the Rhino library

(http://www.mozilla.org/rhino/) The changes were made to support

JScript conditional comments, preserved comments, unescaped slash

characters in regular expressions, and to allow for the optimization

of escaped quotes in string literals.

Copyright And License

Copyright (c) 2013 Yahoo! Inc. All rights reserved.

The copyrights embodied in the content of this file are licensed

by Yahoo! Inc. under the BSD (revised) open source license.

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/161234.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • ajaxFileupload多文件上传

    ajaxFileupload多文件上传

    2021年9月10日
    60
  • SLAM算法总结——经典SLAM算法框架总结

    SLAM算法总结——经典SLAM算法框架总结SLAM算法总结——经典SLAM算法框架总结SLAM算法总结——经典SLAM算法框架总结SLAM算法总结——经典SLAM算法框架总结从研究生接触SLAM算法到现在也有

    2022年6月30日
    20
  • gridview DataFormatString[通俗易懂]

    转有个时间要在gridview中显示,但是保持着数据库中的是标准时间,很长,而且只需要显示日期,就想要格式化字符串,可是设置了DataFormatString就是不起作用,后来一查,原来要设置”行为”中HtmlEncode=falseDataFormatString=”{0:格式字符串}”在DataFormatString中的{0}表示数据本身,而在冒号后面的格式字符串代表所们希望…

    2022年4月7日
    77
  • EmWin学习课堂_小白EmWin_EmWin快速入门_EmWin动态内存,显示和触摸屏_EmWin基础配置

    EmWin学习课堂_小白EmWin_EmWin快速入门_EmWin动态内存,显示和触摸屏_EmWin基础配置一、先说说什么是EmWin,它就是一款中间软件包,弄好了之后,我们的界面设计就会变得很简单,在电脑GUI_Builder上做一个界面,生成.c文件,复制到自己的工程里面,我们的显示屏就能得到一模一样的功能。二、在我们使用一个带触摸和显示器的系统的时候,首先就是驱动他们,做完了就应该是这样的:也就是说我们的系统首先得有一个带触摸(不带也行)的系统,接着就是把这两个东西和EmWin关联起来…

    2022年10月14日
    0
  • SQL server2008 安装教程

    SQL server2008 安装教程                                                     这几天因为需要,一直想安装SQLServer2008来作为Web后台的数据库进行些实验,但总是没有时间,今天终于有时间了,便安装了SQLServer2008,以下是我的安装的步骤,希望对于有需要的人有所帮助。    我一共安装了两次,在第一次安装的时候眼看就要安装完成了…

    2022年6月23日
    26
  • linux常用命令杀死进程_kill杀死进程命令

    linux常用命令杀死进程_kill杀死进程命令在做项目的时候经常会出现程序死机、锁死、无响应等情况,这时候就需要找到程序相应的进程将其杀掉即可。步骤如下:1.定位进程top命令:可以实时动态地查看系统的整体运行情况,是一个综合了多方信息监测系统性能和运行信息的实用工具。通过top命令所提供的互动式界面,用热键可以管理。输入top后可以看到如下的界面,实时显示进程情况。ps命令:processstatus的简称,用于报告当…

    2022年4月19日
    234

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号