Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Now with Browserify 4 & CoffeeScript support
Before, browserify made you choose between sane debugging and sane load times. Now, you can have both.
Minifyify is a browserify plugin that minifies your code. The magic? The sourcemap points back to the original, separate source files.
Now you can deploy a minified bundle in production, and still have a sourcemap handy for when things inevitably break!
var browserify = require('browserify')
, bundler = new browserify();
bundler.add('entry.js');
bundler.plugin('minifyify', options);
bundler.bundle(function (err, src, map) {
// Your code here
});
browserify entry.js -p [minifyify --output bundle.map.json] > bundle.json
Shorten the paths you see in the web inspector by defining a compression function.
// A typical compressPath function
compressPath: function (p) {
return path.relative('my-app-root', p);
}
Defaults to a no-op (absolute paths to all source files).
This is added to the bottom of the minified source file, and should point to where the map will be accessible from on your server. More details here.
Example: If your bundle is at mysite.com/bundle.js
and the map is at mysite.com/map.js
, set options.map = '/map.js'
Set to false
to minify, but not produce a source map or append the source map URL comment.
Set to false to disable minification and source map transforms. This essentially turns minifyify into a pass-thru stream.
Why is this not a real transform?
At this time of writing it is not possible to acheive what minifyify does with a pure transform. Minifyify needs to transform browserify's source map, which is only appended after all transforms have run and the bundling process is complete. That is the job of the .consumer()
function.
Wait.. Why did the total size (souce code + map) get BIGGER??
It's not immediately obvious, but the more you minify code, the bigger the sourcemap gets. Browserify can get away with merely mapping lines to lines because it is going from uncompressed code to uncompressed code. Minifyify squishes multiple lines together, so the sourcemap has to carry more information.
This is OK because the sourcemap is in a separate file, which means your app will be snappy for your users as their browsers won't download the sourcemap.
How does this work?
Minifyify runs UglifyJS on each file in your bundle, and transforms browserify's sourcemap to map to the original files.
Why does the sourcemap cause my debugger to behave erratically?
Some of the optimizations UglifyJS performs will result in sourcemaps that appear to broken. For example, when UglifyJS uses the comma operator to shorten statements on different lines, a single debugger "step" in minified code may execute multiple lines of the original source.
Another common example of erratic behavior is when code like this is compressed:
var myThing = myFunc('a')
, cantGetHere = myFunc('b');
If you set a breakpoint on the second line, your debugger might not pause execution there. I've found that setting the breakpoint on the first line and stepping onto the second line is more reliable.
The MIT License (MIT)
Copyright (c) 2013-2014 Ben Ng
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Minify your browserify bundles without losing the sourcemap
The npm package minifyify receives a total of 5,008 weekly downloads. As such, minifyify popularity was classified as popular.
We found that minifyify 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.