javascript compressor
javascript obfuscator
- http://yuilibrary.com/download/yuicompressor/
- http://dean.edwards.name/packer/
- https://developers.google.com/closure/
- https://github.com/mishoo/UglifyJS
google closure compiler usage
java -jar compiler.jar --js hello.js --js_output_file hello-compiled.js |
perl jsPacker
参数说明:-e是混淆的程度
- 0=None
- 10=Numeric
- 62=Normal(alphanumeric)
- 95=High-ascii
一般使用62即可。
perl jsPacker.pl -i input.js -o output.js -e62 |