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)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • android调用相册和摄像头_网页调用摄像头拍照

    android调用相册和摄像头_网页调用摄像头拍照Android调用系统的拍照,打开相册功能1添加权限:uses-permissionandroid:name="android.permission.WRITE_EXTERNAL_STORAGE"/>uses-permissionandroid:name="android.permission.CAMERA"/>2设置标志(回传码)//

    2022年4月19日
    45
  • 最新java内存模型_java内存模型

    最新java内存模型_java内存模型1.Java内存模型Java内存模型是每个java程序员必须掌握理解的,这是Java的核心基础,对我们编写代码特别是并发编程时有很大帮助。由于Java程序是交由JVM执行的,所以我们在谈Java内存区域划分的时候事实上是指JVM内存区域划分。1.1.Java程序执行流程回顾如图所示首先Java源代码文件(.java后缀)会被Java编译器编译为字节码文件(.class后缀),然后由JVM中…

    2022年7月7日
    21
  • 小程序轮播图测试用例

    小程序轮播图测试用例图片1图片2图片3图片4图片5图片6

    2022年5月20日
    39
  • Java线程和进程区别

    Java线程和进程区别什么是进程,什么是线程?进程:是并发执行的程序在执行过程中分配和管理资源的基本单位,是一个动态概念,竞争计算机系统资源的基本单位。线程:是进程的一个执行单元,是进程内科调度实体。比进程更小的独立运行的基本单位。线程也被称为轻量级进程。一个程序至少一个进程,一个进程至少一个线程。进程线程的区别1、地址空间:同一进程的线程共享本进程的地址空间,而进程之间则是独立的地址空间。2、…

    2022年7月15日
    13
  • oracle数据库查询语句大全_oracle查询是否存在记录

    oracle数据库查询语句大全_oracle查询是否存在记录1oracle数据库查询表的所有数据–select*from表名;(*代表所有)2oracle数据库查询表中指定字段的值–select字段名1,字段名2,……from表名;3oracle数据库往表中添加数据信息–(添加信息使用insertinto语句)insertinto表名values(添加相对应的数据信息,如果在一个字段名中没有信息可以用“null”nul…

    2025年10月6日
    4
  • 使用Java Service Wrapper设置tomcat作为linux服务并且开机自动启动

    使用Java Service Wrapper设置tomcat作为linux服务并且开机自动启动

    2021年5月6日
    177

发表回复

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

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