JavaScript代碼最佳化新工具UglifyJS

來源:互聯網
上載者:User

jQuery 1.5 發布的時候 john resig 大神說所用的代碼最佳化程式從Google Closure切換到UglifyJS,新工具的壓縮效果非常令人滿意。 UglifyJS 是一個服務端node.js的壓縮程式。我測試了一下壓縮率確實比較高。 所以值得寫篇文章推薦下。

你也可以嘗試一下線上版的Uglifyjs: http://sweet.fengyin.name/

如果你對 uglifyjs 有興趣可以按照以下安裝方式進行安裝。

1. 安裝 node.js 環境

2. 進入 https://github.com/mishoo/UglifyJS 右上方 “Download” ZIP下載整個包。

3. 解壓開啟 UglifyJS/bin/uglifyjs

4. 找到

 
  1. global.sys = require(/^v0\.[012]/.test(process.version) ? "sys" : "util");  
  2. var fs = require("fs");  
  3. var uglify = require("uglify-js"), // symlink ~/.node_libraries/uglify-js.js to ../uglify-js.js  
  4.     jsp = uglify.parser,  
  5.     pro = uglify.uglify;  

替換為

 
  1. global.sys = require(/^v0\.[012]/.test(process.version) ? "sys" : "util");  
  2. var fs = require("fs");  
  3. require.paths.unshift(__dirname + "/../");  
  4. var uglify = require("index"),  
  5. jsp = uglify.parser,  
  6. pro = uglify.uglify; 

5. cd 命令到 UglifyJS/bin/ 目錄。執行 ./uglifyjs /你的js路徑/xx.js 如果安裝成功會把你的壓縮代碼直接顯示在命令列。你可以通過 ./uglifyjs 1.js 2.js 把壓縮後的代碼儲存到 2.js

至此 uglifyjs 安裝完成,我還寫了一個PHP類。可以調用 uglifyjs 進行壓縮

 
  1. /*  
  2. # code by https://fengyin.name  
  3. # DEMO http://sweet.fengyin.name/  
  4. # Dual licensed under the MIT  
  5. */ 
  6.  
  7. $uglifyjs = new uglifyjs(array(  
  8.  'node_home'=>'/usr/local/bin/node',  
  9.  'uglifyjs_path'=>'/usr/UglifyJS/bin/uglifyjs', //uglifyjs壓縮公用程式的路徑。  
  10.  // -------- 附加的參數 --------- //  
  11.  'prefix'=>'-b', //輸入的參數 -b 是格式化 不輸入為壓縮,還有更多請參考命令用法。  
  12.  'append'=>''//儲存檔案,如果為空白就是直接在命令列輸出結果。  
  13.  ));  
  14. $results =  $uglifyjs ->compress($_FILES['file']['tmp_name']);  
  15.  
  16.  
  17. class uglifyjs{  
  18.         function __construct($options = array()) {  
  19.             $this->options = $options;  
  20.         }  
  21.        function args($option) {  
  22.             return $option['node_home'].' '.$option['uglifyjs_path'].' 
  23. '.$option['prefix'].' '.$option['file'].' '.$option['append'];  
  24.      
  25.         }  
  26.         function exec($cmd) {  
  27.             exec($cmd.' 2>&1',$out, $status);  
  28.             return json_encode(array(  
  29.             'shell' => $cmd,  
  30.                 'output' => implode("\n",$out),  
  31.                 'status' => $status  
  32.             ));  
  33.         }  
  34.         function compress($file) {  
  35.             $this->options['file'] = $file;  
  36.             return $this->exec($this->args($this->options));  
  37.         }  
  38.     }  
  39. ?>  

文章最後附上 uglifyjs 的命令列中文說明

使用:

這是一個指令碼助手(工具)-bin/uglifyjs-使用這個庫可以用來把一個指令碼壓縮到最小。

簡介:

uglifyjs [ 選項... ] [ 檔案 ]

檔案參數應該放在選項後面,uglifyjs 會讀取檔案中的javascript代碼進行處理。

如果你不指定輸出的檔案名稱,那麼他會把處理後的內容輸出到命令列中。

例: uglifyjs 1.js 2.js 會建立一個 2.js 檔案把 1.js處理完畢的內容輸入到這裡

例: uglifyjs 1.js 會讀取1.js內容,並把結果輸出到命令列中。

支援的選項:

-b or --beautify — 參數 -b 或者 --beautify 用於美化(格式化)代碼。美化之前會壓縮代碼(未驗證。)

-i N or --indent N — 縮排層級空格數

例:uglifyjs -b 1.js 2.js 會把1.js的內容格式後輸出到2.js

-q or --quote-keys — quote keys in literal objects (by default, only keys that cannot be identifier names will be quotes).

-nm or --no-mangle — 變數名不縮短,意味著不會把代碼的變數名縮短為 abcdefg

-ns or --no-squeeze — 不使用ast_squeeze()(可以使各種最佳化之後的代碼更小,更具有可讀性。)

-mt or --mangle-toplevel — mangle names in the toplevel scope too (by default we don’t do this).

--no-seqs — 當ast_squeeze()被調用的時候(除非你添加了--no-squeeze 參數才不會被調用)它將減少在一個代碼塊中重複聲明的行。例如:“a = 10; b = 20; foo();”將被重寫為“a=10,b=20,foo();”。在各種場合,這將允許我們丟棄代碼塊中的括弧(在一些語句塊變成一個獨立的聲明行之後)。這是預設的,因為經我們測試,它似乎更安全並且能節省幾百bytes,但加上--no-seqs 後將被禁止。

--no-dead-code — 預設情況下,UglifyJS將會刪除代碼中明顯無法訪問的語句(如 return , throw , break 或者continue語句 ,以及一些不是函數/變數的的聲明)。通過這個選項可以禁用掉這個最佳化功能。

-nc or --no-copyright — 預設情況下,uglifyjs將在產生的程式碼中保留初始的一些標記(假設著作權資訊等)。如果你設定這個參數將被禁止。

-o filename or --output filename — 將結果輸出到一個指定檔案名稱的檔案中。如果沒有這個參數,結果將會被輸出到命令列

-

-overwrite — 如果代碼是從一個檔案中讀取的(不是直接標準輸入的)並且使用了--overwrite參數,那麼結果也將會被寫進相同的檔案中去。

--ast — pass this if you want to get the Abstract Syntax Tree instead of JavaScript as output. Useful for debugging or learning more about the internals.

--ast — pass 如果你要擷取一個用來取代javascript輸出的抽象文法樹,這些參數會在你進行調試或學習內部組件時很有用。

-v or --verbose — output some notes on STDERR (for now just how long each operation takes).

-v or --verbose — output 一些標準錯誤提示(顯示每一次花費多久)

--extra — enable additional optimizations that have not yet been extensively tested. These might, or might not, break your code. If you find a bug using this option, please report a test case.

當你發現BUG時你可以增加一個中斷點用來對還沒有徹底的測試的代碼進行最佳化,你可以使用這個選項來產生一個測試案例。

--extra — enable

--unsafe — enable other additional optimizations that are known to be unsafe in some contrived situations, but could still be generally useful. For now only this:

foo.toString() ==> foo+””

想foo.toString() 這種用法 也是可行的,但是存在一些人為的不安全的情況,這事也需要添加一些最佳化比如: foo+””

--max-line-len (default 32K characters) — add a newline after around 32K characters. I’ve seen both FF and Chrome croak when all the code was on a single line of around 670K. Pass –max-line-len 0 to disable this safety feature.

在超過大概32K位元組的時候你要增加一行,我有發現過在Firefox和chorme下檔代碼一行超過670K的時候它會發出警示聲。通過–max-line-len 0 去靜止這個安全屬性

--reserved-names — some libraries rely on certain names to be used, as pointed out in issue #92 and #81, so this option allow you to exclude such names from the mangler. For example, to keep names require and $super intact you’d specify –reserved-names “require,$super”.

--reserved-names — 些類庫會依賴於特定的名稱去使用,比如:#92 和#81 所以這個選項允許你去排除一些關鍵字。

【編輯精選】

  1. 超強JavaScript編輯器 WebStorm 2.1 發布
  2. JavaScript跨域總結與解決辦法
  3. 用JavaScript 實現表格式資料管理
  4. 駭客調查:最流行JavaScript庫是什麼?
  5. JavaScript版幾種常見排序演算法分享 
【責任編輯:陳貽新 TEL:(010)68476606】


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.