page-disassembler
v0.2.0
Published
A tool for detecting and debundling JavaScript module bundlers (such as [webpack](https://webpack.js.org/), [browserify](https://browserify.org/)).
Readme
page-disassembler
A tool for detecting and debundling JavaScript module bundlers (such as webpack, browserify).
Install
npm install page-disassemblerBuild from sources
git clone https://github.com/seclab-msu/page-disassembler
cd page-disassembler
npm installRun
You can run debundler either using cli or by using its' API from your code
From CLI
If you want to debundle a single JavaScript file use
node wprl.js --debundle-file /path/to/file/with/bundle.jsBy default debundled modules will be dumped to results directory, if you want to specify its' name, you can do it via
node wprl.js --debundle-file /path/to/file/with/bundle.js --target-dir custom-dirFor running debundler on tar archive that contains a bunch of all resources from web-page
node wprl.js /path/to/page/archive.tarFrom API
Coming soon...
