18
HAZEM SALEH JavaScript Tools

JavaScript tools

Embed Size (px)

DESCRIPTION

This presentation goes through the most popular JavaScript tools on the different browsers (Internet Explorer, Firefox, Safari and Chrome). It goes through popular JavaScript debugging tools, JavaScript verification tool (JSLint), and finally JavaScript minification tools.

Citation preview

Page 1: JavaScript tools

H A Z E M S A L E H

JavaScript Tools

Page 2: JavaScript tools

Outline

JavaScript Debugging Tools

Google Chrome Developer Tools.

Safari Development Tools.

Firebug for Firefox.

IE Developer Tools.

JavaScript Code Verification Tools

JSLint.

JavaScript Code Minification Tools

YUI Compressor.

Dojo ShrinkSafe

Page 3: JavaScript tools

JavaScript Debugging Tools

Page 4: JavaScript tools

Google Chrome Developer Tools

Page 5: JavaScript tools

Google Chrome Developer Tools

Page 6: JavaScript tools

Safari Development Tools

Page 7: JavaScript tools

Safari Development Tools

Page 8: JavaScript tools

Firebug for Firefox

Page 9: JavaScript tools

Firebug for Firefox

Page 10: JavaScript tools

IE Developer Tools

Page 11: JavaScript tools

IE Developer Tools

Page 12: JavaScript tools

JavaScript Code Verification Tools

Page 13: JavaScript tools

JSLint

Verify your JavaScript code on: http://www.jslint.com

Page 14: JavaScript tools

JavaScript Code Minification Tools

Page 15: JavaScript tools

JavaScript Code Minification Tools

Compressing JavaScript code is one of the most important things to consider in order to have better JavaScript performance.

Some popular web sites declared that their users have empty browser caches, this is why this is important to be considered. Yahoo! Declared that around 40% to 60% of Yahoo!'s users

have an empty cache experience.

Many ready made tools can perform JavaScript code minification, however, the most popular two are for YUI and Dojo.

Page 16: JavaScript tools

YUI Compressor

Download the yuicompressor-x.y.z.jar from:

https://github.com/yui/yuicompressor/downloads

Run the compressor from the CLI:

java -jar yuicompressor-2.4.7.jar file1.js -o file1-min.js --charset utf-8

file1.js refers to the JavaScript file to be compressed.

-o file1-min.js means output the compressed content to file1-min.js.

--charset utf-8 for UTF-8 handling.

Page 17: JavaScript tools

Dojo ShrinkSafe

Download the dojo-release-x.y.z-shrinksafe.zip from:

http://download.dojotoolkit.org/current-stable/

Run the compressor from the CLI:

java -jar -Dfile.encoding=UTF8 shrinksafe.jar file1.js > file1-min.js

file1.js refers to the JavaScript file to be compressed.

> file1-min.js means output the compressed data to file1-min.js file.

-Dfile.encoding=UTF8 for UTF-8 handling.

Page 18: JavaScript tools

Questions