webcrack
v2.15.0

WebCrack adalah alat untuk JavaScript Reverse Engineering. Ini dapat menghilangkan obfuscator.io, tidak dikenali, transpile, dan membongkar webpack/browserify, menyerupai kode sumber asli sebanyak mungkin.
Cobalah di taman bermain online atau lihat dokumentasi.
npm install -g webcrackContoh:
webcrack input.js
webcrack input.js > output.js
webcrack bundle.js -o output-dirnpm install webcrackContoh:
import fs from 'fs' ;
import { webcrack } from 'webcrack' ;
const input = fs . readFileSync ( 'bundle.js' , 'utf8' ) ;
const result = await webcrack ( input ) ;
console . log ( result . code ) ;
console . log ( result . bundle ) ;
await result . save ( 'output-dir' ) ;