An online JavaScript compressor that uses UglifyJS2 for all compression.
Questions tagged [jscompress]
24 questions
1
vote
1 answer
JCSompress - dealing with special characters in JS files?
I'm in the initial stages of investigating JSCompress for MSBUILD : http://msbuildtasks.tigris.org/
For my initial testing I have a few JS files over which I am running this task, some of the files include already minified JS files (JQuery Library…

Murtaza Mandvi
- 10,708
- 23
- 74
- 109
1
vote
2 answers
GZip doesn't work in Webpack 2.5.1
I use webpack 2.5.1 and I want to reduce my files size, because my hardware doesn't support files above 7,8 hundred kilobytes. I reduce my main-client.js to 2.63 mb with production mode and uglify, but I want to use gzip and I don't know how...
If…

Alex
- 1,013
- 1
- 13
- 27
1
vote
1 answer
Compressed JS Decoder
http://www.lotterypost.com/js-compress.aspx
This is site is very nice for compressing JS
but I want to decode....
And instead of online is there any free best tool to encode/decode Js

SOF User
- 7,590
- 22
- 75
- 121
1
vote
0 answers
how to customize the template content in wromapping.properties of WRO4J?
I use wro4j to minimize my front end resource files, such as *.js and *.css, to reduce page load time in my Spring application. wro4j will generate a file called 'wromapping.properties' to record the generated files' names.
the first two lines in…

Sheldon Wei
- 1,198
- 16
- 31
0
votes
2 answers
Looking for a CSS and for a js file merger and minimizer
I'm working on a public project and one of the things we are after is a CSS file merger and minimizer and a js file merger and minimizer.
The requisites are as follows:
No beta code. Only stable code.
Must be written in php.
Must work in php…

brunoais
- 6,258
- 8
- 39
- 59
0
votes
1 answer
The web application created a ThreadLocal, but failed to remove it Tomcat [SEVERE]
I am getting below error on tomcat console and leading to outof memoryerror.
16-Mar-2015 10:57:25.659 SEVERE [http-nio-8080-exec-6]
org.apache.catalina.loader.WebappClassLoaderBase.checkThreadLocalMapForLeaks
The web application [XXXX] created…

Harinath
- 105
- 1
- 4
- 12
0
votes
1 answer
How to find if a request is for js or css in httpHandler
is there any way to find if a particular request is for JS or CSS in httphandler
to improve the performance of my website i was using HttpCompress from Code Project
http://www.codeproject.com/KB/aspnet/httpcompression.aspx?msg=2544100
but since it…

Pankaj Kumar
- 1,748
- 6
- 28
- 41
-1
votes
1 answer
Tools to minify CDD and JS files
I deployed my application, I find that the loading time is much .. there isa way to compress css and js files ? , knowing that I use in each page that the necessary and sometimes js version minified .. thank you

AiD
- 977
- 3
- 15
- 41
-2
votes
1 answer
How use Angular gulp uglify?
gulp.task("uglify", function () {
return (
gulp
.src("dist/alparslan-oto/main.js")
.pipe(rename("main.js"))
.pipe(sourcemaps.init())
.pipe(uglify())
// .pipe(sourcemaps.write()) // Inline source maps.
//…

Ali Parlatti
- 47
- 1
- 7