npm
npmjs.com › package › uglify-es
uglify-es - npm
JavaScript parser, mangler/compressor and beautifier toolkit for ES6+. Latest version: 3.3.9, last published: 8 years ago. Start using uglify-es in your project by running `npm i uglify-es`. There are 773 other projects in the npm registry using ...
» npm install uglify-es
Published Jan 27, 2018
Version 3.3.9
Author Mihai Bazon
npm
npmjs.com › package › uglify-js
uglify-js - npm
August 29, 2024 - By default UglifyJS will not try to be IE-proof. --keep-fargs Do not mangle/drop function arguments. --keep-fnames Do not mangle/drop function names. Useful for code relying on Function.prototype.name. --module Process input as ES module (implies --toplevel) --no-module Avoid optimizations which may alter runtime behavior under prior versions of JavaScript.
» npm install uglify-js
Videos
npm
npmjs.com › package › gulp-uglify-es
gulp-uglify-es - npm
July 26, 2021 - let gulp = require("gulp"); let rename = require("gulp-rename"); var sourcemaps = require('gulp-sourcemaps'); let uglify = require('gulp-uglify-es').default; gulp.task("uglify", function () { return gulp.src("lib/bundle.js") .pipe(rename("bundle.min.js")) .pipe(sourcemaps.init()) .pipe(uglify()) .pipe(sourcemaps.write()) // Inline source maps.
» npm install gulp-uglify-es
Published Jul 26, 2021
Version 3.0.0
Author Itay Ronen
Repository https://gitlab.com/itayronen/gulp-uglify-es
npm
npmjs.com › package › @node-minify › uglify-es
@node-minify/uglify-es - npm
January 22, 2026 - uglify-es plugin for @node-minify. Latest version: 9.0.1, last published: a year ago. Start using @node-minify/uglify-es in your project by running `npm i @node-minify/uglify-es`. There are 9 other projects in the npm registry using @node-minify/uglify-es.
» npm install @node-minify/uglify-es
Published Nov 12, 2024
Version 9.0.1
Author Rodolphe Stoclin
Repository https://github.com/srod/node-minify
npm
npmjs.com › search
keywords:uglify-es - npm search
npm · Sign UpSign In · Sort by: Default · Default · Most downloaded this week · Most downloaded this month · Most dependents · Recently published · JavaScript parser, mangler/compressor and beautifier toolkit for ES6+ uglify · terser · uglify-es · uglify-js · minify ·
GitHub
github.com › rsms › uglify-es-lib
GitHub - rsms/uglify-es-lib: uglify-es as precompiled single-file library
Install as package: npm install uglify-es-lib · Use as library in a TypeScript project: cp -a uglify-es.js uglify-es.js.map uglify-es.d.ts ~/your/project/dir · Use as library with a Rollup or Webpack project: cp -a uglify-es.js uglify-es.js.map ...
Author rsms
GitHub
github.com › noBlubb › uglify-es-webpack-plugin
GitHub - noBlubb/uglify-es-webpack-plugin: UglifyJS3 with ES6 plugin for webpack
The original package over at ... as possible, as they feature tests and a far more complete implementation. npm install uglify-es-webpack-plugin or yarn add uglify-es-webpack-plugin...
Starred by 17 users
Forked by 4 users
Languages JavaScript 100.0% | JavaScript 100.0%
Top answer 1 of 2
18
2023 UPD: this answer may be outdated, according to some comments. Didn't have time to check
I've achived this by installing the harmony branch of grunt-contrib-uglify, which supports es6:
npm install git://github.com/gruntjs/grunt-contrib-uglify.git#harmony --save-dev
2 of 2
15
The ECMAScript version has finally been released. You can now get the same result with the official version (it's no longer needed to pick it from GitHub)
npm install grunt-contrib-uglify-es --save-dev
https://www.npmjs.com/package/grunt-contrib-uglify-es
npm
npmjs.com › package › uglify-es-webpack-plugin
uglify-es-webpack-plugin - npm
July 25, 2017 - Latest version: 0.10.0, last published: 8 years ago. Start using uglify-es-webpack-plugin in your project by running `npm i uglify-es-webpack-plugin`. There are 4 other projects in the npm registry using uglify-es-webpack-plugin.
» npm install uglify-es-webpack-plugin
Published Jul 25, 2017
Version 0.10.0
npm
npmjs.com › package › grunt-contrib-uglify-es
grunt-contrib-uglify-es - npm
Minify JavaScript files with UglifyJS. Latest version: 3.3.0, last published: 8 years ago. Start using grunt-contrib-uglify-es in your project by running `npm i grunt-contrib-uglify-es`. There are 12 other projects in the npm registry using grunt-contrib-uglify-es.
» npm install grunt-contrib-uglify-es
Published Feb 02, 2018
Version 3.3.0
Author Grunt Team
npm
npmjs.com › package › @types › uglify-es
@types/uglify-es - npm
November 7, 2023 - TypeScript definitions for uglify-es. Latest version: 3.0.3, last published: 2 years ago. Start using @types/uglify-es in your project by running `npm i @types/uglify-es`. There are 1 other projects in the npm registry using @types/uglify-es.
» npm install @types/uglify-es
Published Nov 07, 2023
Version 3.0.3
npm
npmjs.com › package › @fabiosantoscode › uglify-es
@fabiosantoscode/uglify-es - npm
May 7, 2018 - Start using @fabiosantoscode/uglify-es in your project by running `npm i @fabiosantoscode/uglify-es`. There is 1 other project in the npm registry using @fabiosantoscode/uglify-es.
» npm install @fabiosantoscode/uglify-es
Published May 07, 2018
Version 3.7.1
Author Mihai Bazon
Repository https://github.com/fabiosantoscode/uglify-es
npm
npmjs.com › search
uglify - npm search
Collect all uglify bug versions on npm package.
npm
npmjs.com › package › rollup-plugin-uglify-es
rollup-plugin-uglify-es - npm
May 11, 2017 - Rollup plugin to minify generated bundle. Latest version: 0.0.1, last published: 9 years ago. Start using rollup-plugin-uglify-es in your project by running `npm i rollup-plugin-uglify-es`. There are 22 other projects in the npm registry using ...
» npm install rollup-plugin-uglify-es
Published May 11, 2017
Version 0.0.1
Author Ezekiel Chentnik
GitHub
github.com › nckcol › uglify-es-webpack-plugin
GitHub - nckcol/uglify-es-webpack-plugin: UglifyJS3 with ES6 plugin for webpack
November 12, 2022 - With yarn: yarn add https://github.com/Nckcol/uglify-es-webpack-plugin.git --dev · With npm: npm install https://github.com/Nckcol/uglify-es-webpack-plugin.git --save-dev · const UglifyESPlugin = require('uglify-es-webpack-plugin'); /* ... ...
Author nckcol
npm
npmjs.com › package › uglify-es-script
uglify-es-script - npm
February 5, 2018 - Minify javascript.. Latest version: 1.0.0, last published: 8 years ago. Start using uglify-es-script in your project by running `npm i uglify-es-script`. There are no other projects in the npm registry using uglify-es-script.
» npm install uglify-es-script
Published Feb 05, 2018
Version 1.0.0
Author Andy Bettisworth
Repository https://github.com/wurde/uglify-es-script
Lisperator
lisperator.net › uglifyjs
UglifyJS — JavaScript parser, compressor, minifier written in JS
UglifyJS is written in “classic ... installed it with npm install or npm link as mentioned above, then this file is loaded when you say var UglifyJS = require("uglify-js2")....
Npm
npm.io › search › keyword:uglify-es
Uglify-es | npm.io
JavaScript parser, mangler/compressor and beautifier toolkit for ES6+ uglifyterseruglify-esuglify-jsminifyminifierjavascriptecmascriptes5es65.36.0 • Published 1 year ago