2.13.0 โ€ข Published 3 months ago

webcrack v2.13.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Test npm license Netlify Status

webcrack is a tool for reverse engineering javascript. It can deobfuscate obfuscator.io, unminify, transpile, and unpack webpack/browserify, to resemble the original source code as much as possible.

Try it in the online playground or view the documentation.

  • ๐Ÿš€ Performance - Various optimizations to make it fast
  • ๐Ÿ›ก๏ธ Safety - Considers variable references and scope
  • ๐Ÿ”ฌ Auto-detection - Finds code patterns without needing a config
  • โœ๐Ÿป Readability - Removes obfuscator/bundler artifacts
  • โŒจ๏ธ TypeScript - All code is written in TypeScript
  • ๐Ÿงช Tests - To make sure nothing breaks

Command Line Interface

npm install -g webcrack

Examples:

webcrack input.js
webcrack input.js > output.js
webcrack bundle.js -o output-dir

API

npm install webcrack

Examples:

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');
2.13.0

3 months ago

2.12.1

4 months ago

2.12.0

4 months ago

2.11.0

5 months ago

2.11.1

5 months ago

2.10.0

8 months ago

2.7.0

10 months ago

2.6.1

10 months ago

2.6.0

10 months ago

2.5.1

11 months ago

2.9.0

9 months ago

2.8.1

9 months ago

2.6.3

10 months ago

2.7.1

9 months ago

2.8.0

9 months ago

2.6.2

10 months ago

2.9.1

9 months ago

1.2.0

1 year ago

1.1.0

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

1.9.1

1 year ago

1.9.0

1 year ago

1.8.0

1 year ago

1.6.2

1 year ago

1.7.0

1 year ago

1.6.1

1 year ago

1.6.0

1 year ago

1.5.1

1 year ago

1.5.0

1 year ago

1.4.0

1 year ago

1.3.0

1 year ago

2.3.0

12 months ago

2.1.2

1 year ago

2.2.0

12 months ago

2.1.1

1 year ago

2.5.0

12 months ago

2.4.0

12 months ago

2.1.3

1 year ago

2.1.0

1 year ago

2.0.1

1 year ago

2.0.0

1 year ago

1.11.0

1 year ago

1.10.0

1 year ago

0.0.0

1 year ago