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


相关推荐

  • 数据挖掘之异常检测

    数据挖掘之异常检测看了数据挖掘的异常检测部分,写一点笔记。1.0概述什么是数据挖掘:数据挖掘什么是异常检测:异常检测异常检测的目标是发现与大部分其他对象不同的对象。通常,异常对象被称为离群点,因为在数据的散布

    2022年7月1日
    26
  • IOS学习笔记44–ASIRequestHttp之BUG(一)

    IOS学习笔记44–ASIRequestHttp之BUG(一)

    2021年6月20日
    85
  • 微信公众号开发者账号_小程序后端开发教程

    微信公众号开发者账号_小程序后端开发教程编辑模式与开发模式微信公众帐号申请成功后,要想接收处理用户的请求,就必须要在“高级功能”里进行配置,点击“高级功能”,将看到如下界面:从上图中可以看到,高级功能包含两种模式:编辑模式和开发模式,并且这两种模式是互斥关系,即两种模式不能同时开启。那两种模式有什么区别呢?作为开发人员到底要开启哪一种呢?编辑模式:主要针对非编程人员及信息发布类公众帐号使用。开启该模式后,可以方便地通

    2022年9月30日
    4
  • 文件上传的三种方式-Java「建议收藏」

    文件上传的三种方式-Java「建议收藏」前言:因自己负责的项目(jetty内嵌启动的SpringMvc)中需要实现文件上传,而自己对java文件上传这一块未接触过,且对Http协议较模糊,故这次采用渐进的方式来学习文件上传的原理与实践。该博客重在实践。一.Http协议原理简介   HTTP是一个属于应用层的面向对象的协议,由于其简捷、快速的方式,适用于分布式超媒体信息系统。它于1990年提出,经过几年的使用与发展,

    2022年5月14日
    111
  • axios上传文件以及遇到的问题

    axios上传文件以及遇到的问题axios上传文件以及遇到的问题1,这里上传文件使用的是elementUI的上传,也用原生的input上传写了,但是没有时间做多文件上传,下面会把代码贴出。2,这里上传文件我是先获取OSS权限和上传路径,然后再上传。但是权限获取成功后,上传到阿里云服务器时,OPTION请求报403。原因是项目中axios设置了拦截器,添加了config配置,但是在axios发送OPTION测试接口是否有权限访…

    2022年6月17日
    332
  • 如何利用极致业务基础平台构建一个通用企业ERP之十六物料进出明细报表的设计…

    如何利用极致业务基础平台构建一个通用企业ERP之十六物料进出明细报表的设计…

    2021年8月27日
    76

发表回复

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

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