dead-deps — what happened to your dependencies

Is uglify-es still maintained?

No — uglify-es stopped being maintained around February 2018. terser is a community fork that picked uglify-es up and carried it on.

Status
No longer maintained
Last maintained
February 2018
Use instead
terser on npm
Succession
Maintained fork
Drop-in
no — expect code changes
Confidence
high

Is there a maintained fork of uglify-es?

terser is a community fork that picked uglify-es up and carried it on. terser is not a drop-in replacement, so expect to change call sites.

How to migrate from uglify-es to terser

Terser accepts uglify-es options largely unchanged, so require('terser').minify(code, options) is close to a direct swap — but Terser 5's minify() is async and returns a promise, so call sites need updating.

Why uglify-es is on this list

uglify-es was the ES2015+ branch of UglifyJS and its releases stopped in early 2018; it is deprecated on npm, with the notice directing ES support back to uglify-js as of v3.13.0. Terser is a community fork of uglify-es that deliberately kept the option and CLI surface, and it became the default minifier for webpack and Rollup. Both destinations are live, but the ecosystem settled on terser.

The succession is settled: primary sources agree and the ecosystem has already moved.

uglify-es alternatives

Beyond the primary recommendation, these are credible for uglify-es's use case:

Check your own project for uglify-es

npx dead-deps --all --min-state unmaintained

Run that in the directory holding your lockfile. If uglify-es is anywhere in your tree — a direct dependency or buried under something else — it appears in the report with this verdict, this successor and the same evidence links, alongside anything else that has stopped moving. Nothing is uploaded; the scan reads your lockfile locally and queries public registry metadata.

Exit code 1 means something was flagged, which makes npx dead-deps --min-state deprecated usable as a CI gate. See how verdicts are produced.

Evidence

Every claim on this page traces to a primary source. Check them:

See the full index of covered packages, or read the methodology for how a verdict is reached and why a quiet package is not a dead one.