
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Extract, unminify, and beautify ("retidy") each file from a webpack/parcel bundle
Extract, unminify, and beautify ("retidy") each file from a webpack/parcel bundle
⚠️ No Unit Tests, may have unexpected side effects ⚠️
npm install -g retidy
retidy \
-i <bundle_file> \
-o <out_dir> \
-t <bundle_type> \
-b <bundle_ast_reference>
see
retidy --help
import retidy from "retidy"
retidy(bundleCode[, options])
retidy(bundleCode: string, options?: Options): Promise<string[]>
If set options.writeFiles = true (by default), retidy will write extracted code files into the file system (under options.outDir directory, ./retidy-out/ by default).
see src/options.ts
import retidy from "retidy"
import fs from "fs"
const code = fs.readFileSync("path/to/webpack-bundle.js", "utf-8")
retidy(code, { type: "webpack", outDir: "./out/", bundleAstReferenceKeys: ["body", 0, "expression", "right"] })
MIT
Some companies specify in their terms of service that their code cannot be "reverse engineered".
Hope you understand what you are doing so you don't break any agreements.
FAQs
Extract, unminify, and beautify ("retidy") each file from a webpack/parcel bundle
The npm package retidy receives a total of 130 weekly downloads. As such, retidy popularity was classified as not popular.
We found that retidy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.