dazwiafl / express-minify

An express middleware to automatically minify and cache your javascript and css files.

Home Page:https://npmjs.org/package/express-minify

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

express-minify

Build Status npm version npm download counter

Dependency Status devDependency Status

NodeICO

express-minify is an express middleware to automatically minify and cache your javascript and css files.

It also supports LESS/SASS/Stylus/CoffeeScript compiling and minifying.

Note

For better performance and more powerful features (eg: generate Javascript Maps), I recommend you to use Grunt (The Javascript Task Runner) to complete these tasks such as minifying and LESS/SASS/Stylus/CoffeeScript compiling.

Installation

npm install express-minify

Usage

var minify = require('express-minify');
app.use(minify());

Options

app.use(minify(
{
    js_match: /javascript/,
    css_match: /css/,
    sass_match: /scss/,
    less_match: /less/,
    stylus_match: /stylus/,
    coffee_match: /coffeescript/,
    json_match: /json/,
    cache: false
}));
  • js_match: RegExp

    matches JavaScript content-type.

  • css_match: RegExp

    matches css content-type.

  • sass_match: RegExp

    matches SASS content-type.

  • less_match: RegExp

    matches LESS content-type.

  • stylus_match: RegExp

    matches STYLUS content-type.

  • coffee_match: RegExp

    matches CoffeeScript content-type.

  • json_match: RegExp

    matches JSON content-type.

  • cache: String | false

    the directory for cache storage (must be writeable). Pass false to cache in the memory (not recommended).

Per-Response Options

  • res._skip

    Pass true to disable all kind of processing (minifying & precompiling).

  • res._no_minify

    Pass true to disable minifying.

  • res._no_cache

    Pass true to disable caching response data.

UglifyJs Options

  • res._uglifyMangle

    Pass false to disable mangling names when minifying JavaScript for this response.

  • res._uglifyOutput

    Pass an object if you wish to specify additional UglifyJs output options when minifying JavaScript for this response.

  • res._uglifyCompress

    Pass an object to specify custom UglifyJs compressor options (pass false to skip) when minifying JavaScript for this response.

Examples

Working with express-static:

app.use(minify());
app.use(express.static(__dirname + '/static'));

Working with express-compression(gzip):

app.use(compression());
app.use(minify());

Minify dynamic responses:

var responseJS = 
    "(function(window, undefined)\n" +
    "{\n" +
    "\n" +
    "    var hello = 'hello';\n" +
    "\n" +
    "    var world = 'world';\n" +
    "\n" +
    "    alert(hello + world);\n" +
    "\n" +
    "})(window);"

app.use(minify());
app.get('/response.js', function(req, res)
{
    res.setHeader('Content-Type', 'application/javascript');
    res.end(responseJS);
});

Use file cache to improve performance:

You can use a file cache instead of memory cache to cut memory usage.

You need to specify a writable directory to store those cache file.

app.use(minify({cache: __dirname + '/cache'}));
app.use(express.static(__dirname + '/static'));

Parse and minify CoffeeScript/LESS/SASS/Stylus:

express-minify can auto-compile your files and minify it without the need of specifying a source file directory. Currently it supports coffee-script, less, sass and stylus.

To enable auto-compiling, first you need to install modules:

# you needn't install all of those modules
# only choose what you want
npm install coffee-script less node-sass stylus --save

Then you need to define MIME for those files:

// Test URL: http://localhost/auto_parsed_compressed.coffee

express.static.mime.define(
{
    'text/coffeescript':  ['coffee'],
    'text/less':          ['less'],
    'text/x-scss':        ['scss'],
    'text/stylus':        ['styl']
});

app.use(minify());

Change since 0.1.6: You need to manually install those modules to enable this feature. They are no longer pre-defined dependencies of this package.

Specify UglifyJs options

response._uglifyMangle: pass false to skip mangling names.

Example: Disable mangle for AngularJs.

app.use(function(req, res, next)
{
    // do not mangle -angular.js files
    if (/-angular\.js$/.test(req.url)) {
        res._uglifyMangle = true;
    }
    next();
});
app.use(minify());

response._uglifyOutput: specify UglifyJs additional output options.

Example: Preserve comments for specific files.

app.use(function(req, res, next)
{
    if (/\.(user|meta)\.js$/.test(req.url)) {
        res._uglifyOutput = {
            comments: true
        };
    }
    next();
});

response._uglifyCompress: specify UglifyJs custom compressor options.

Disable minifying or caching for a response

If you don't want to minify a specific response, just use response._no_minify = true.

If you want to minify a response but don't want to cache it (for example, dynamic response data), use: response._no_cache = true.

Example:

app.use(function(req, res, next)
{
    // for all *.min.css or *.min.js, do not minify it
    if (/\.min\.(css|js)$/.test(req.url)) {
        res._no_minify = true;
    }
    next();
});
app.use(minify());

Yet another example:

app.use(minify());
app.get('/server_time_min.jsonp', function(req, res)
{
    var obj = {
        'ok': true,
        'data': {
            'timestamp': new Date().getTime()
        }
    };

    // minify this response, but do not cache it
    res._no_cache = true;
    res.setHeader('Content-Type', 'application/javascript');
    res.send("callback(" + JSON.stringify(obj, null, 4) + ");");
});
app.get('/server_time.jsonp', function(req, res)
{
    var obj = {
        'ok': true,
        'data': {
            'timestamp': new Date().getTime()
        }
    };

    // do not minify this response
    res._no_minify = true;
    res.setHeader('Content-Type', 'application/javascript');
    res.send("callback(" + JSON.stringify(obj, null, 4) + ");");
});

WARNING: Do NOT set _no_minify between res.write and res.end.

Notice

If you are using cluster, it is strongly recommended to enable file cache. They can share file caches.

Change log

0.1.6

  • Make node-sass, stylus, less, coffee-script dependency optional, now developers need to manually install those modules to enable compiling

0.1.5

  • Fix MIME for Js
  • Fix JSON minify performance issue

0.1.4

  • Add some useful badges #27
  • Update dependencies
  • Support JSON minify #25
  • Start to use travis-ci online build testing

0.1.3

0.1.2

  • Added res._skip.
  • Modified behaviour of res._no_minify. Now it will only disable minifying and won't cause precompiling not working. #17
  • Fixed cache bugs with response options.

0.1.1

  • Added fallback for res._no_mangle = true (Please use res._uglifyMangle = false)
  • Update dependencies

0.1.0

  • Changed disabling mangle: res._no_mangle = true => res._uglifyMangle = false
  • Added support for passing additional UglifyJs options: res._uglifyCompress, res._uglifyOutput #15

0.0.11

  • Update dependencies #11

0.0.10

  • Added tests

  • Fixed SASS compiling

  • Fixed express-compression compatibility

0.0.9

  • Added support for res._no_mangle #10

0.0.8

  • Removed options of whitelist and blacklist

  • Added support for res._no_cache #5

  • Node v0.10 compatible

0.0.7

  • Changed options's default blacklist to [/\.min\.(css|js)$/]

  • Replaced uglifycss with cssmin

  • Dropped support for .sass (sass/node-sass#12)

  • Fixed #3

0.0.6

  • Support for blacklist and whitelist #2

0.0.5

  • Added support for res._no_minify

  • Fixed #1

0.0.4

  • Support for LESS/SASS/Stylus/CoffeeScript parsing and minifying

0.0.3

  • Support for file cache

  • Fixed the bug of non-string path

0.0.2

  • Support for dynamic minifying

License

The MIT License (MIT)

Copyright (c) 2014 Breezewish

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.

About

An express middleware to automatically minify and cache your javascript and css files.

https://npmjs.org/package/express-minify

License:MIT License


Languages

Language:JavaScript 100.0%