Open1

JavaScriptを手元でMinifierしたい

ぼんぼん

JavaScriptの難読化、サイズ圧縮

terser

https://github.com/terser/terser

対応馬

なので、terserを使ってみる

インストール

npm install terser -g

Usage

terser index.js --compress --mangle --output compressed.js

or

# 最後に元ファイルの手前にオプションを指定する場合は、-- で区切る
terser --compress --mangle --output compressed.js -- index.js