Indexed by TopGit from live GitHub metadata: webpack-contrib/uglifyjs-webpack-plugin has 1.4k stars, written primarily in JavaScript. [deprecated] UglifyJS Plugin
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
Use source maps to map error message locations to modules (this slows down the compilation).
If you use your own minify function please read the minify section for handling source maps correctly.
⚠️ cheap-source-map options don't work with this plugin.
Whether comments shall be extracted to a separate file, (see details).
By default extract only comments using /^\**!|@preserve|@license|@cc_on/i regexp condition and remove remaining comments.
If the original file is named foo.js, then the comments will be stored to foo.js.LICENSE.
The uglifyOptions.output.comments option specifies whether the comment will be preserved, i.e. it is possible to preserve some comments (e.g. annotations) while extracting others or even preserving comments that have been extracted.
The file where the extracted comments will be stored.
Default is to append the suffix .LICENSE to the original filename.
webpack.config.js
module.exports = {
optimization: {
minimizer: [
new UglifyJsPlugin({
extractComments: {
condition: /^\**!|@preserve|@license|@cc_on/i,
filename: 'extracted-comments.js',
banner(licenseFile) {
return `License information can be found in ${licenseFile}`;
},
},
}),
],
},
};
banner
Type: Boolean|String|Function<(string) -> String>
Default: /*! For license information please see ${commentsFile} */
The banner text that points to the extracted file and will be added on top of the original file.
Can be false (no banner), a String, or a Function<(string) -> String> that will be called with the filename where extracted comments have been stored.
Will be wrapped into comment.
How active is development on webpack-contrib/uglifyjs-webpack-plugin?
The most recent commit recorded on webpack-contrib/uglifyjs-webpack-plugin was 6.7 years ago, based on the GitHub push timestamp. The repository has 172 forks — one of the better signals of community interest.
How many stars does webpack-contrib/uglifyjs-webpack-plugin have?
webpack-contrib/uglifyjs-webpack-plugin has 1.4k GitHub stars — refresh the page for the live number, or check github.com/webpack-contrib/uglifyjs-webpack-plugin. TopGit mirrors GitHub's count but does not claim minute-by-minute accuracy.
What else is in the Frontend space?
webpack-contrib/uglifyjs-webpack-plugin is tracked by TopGit under the Frontend category, alongside 5 GitHub-tagged topics. Trending and Topics pages list peer repositories of comparable stars and language.
What language is webpack-contrib/uglifyjs-webpack-plugin written in?
webpack-contrib/uglifyjs-webpack-plugin is written primarily in JavaScript. GitHub's language field is based on the largest share of bytes in the default branch.
What topics is webpack-contrib/uglifyjs-webpack-plugin associated with?
GitHub's repository topics for webpack-contrib/uglifyjs-webpack-plugin: "minify", "minimizer", "uglify", "webpack", "webpack-plugin". TopGit's editorial category is Frontend.
Where do I read more about webpack-contrib/uglifyjs-webpack-plugin?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/webpack-contrib/uglifyjs-webpack-plugin is the definitive source.
Why is webpack-contrib/uglifyjs-webpack-plugin categorized under Frontend?
TopGit places webpack-contrib/uglifyjs-webpack-plugin in the Frontend category based on its GitHub topics and description (tagged: "minify", "minimizer", "uglify"). Categories are assigned from real repository metadata, not editorial guesswork.
Read full README in the tab above.
Want a second opinion on uglifyjs-webpack-plugin?
Ask an AI that can read this page — one click and you get its take on uglifyjs-webpack-plugin.