0.1.2 • Published 11 years ago

compile-mw-jade-runtime v0.1.2

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

Compile-Middleware-Jade-Runtime

Jade runtime script compile middleware built on compile-middleware.

Usage

var jadeware = require('compile-mw-jade-runtime');

app.use(jadeware({
    filename  : /(?:\/runtime\/)(.*)\.js/i, // Capture group 1 will be used
    src       : '/path/to/source',
    maxAge    : 86400                       // HTTP Cache Control MaxAge, Optional
    // Render Options to Jade Parser, Optional
    runtime   : /^\/?runtime((\.|-)min)?\.js$/i 
             // Match request path pattern to runtime.js, 
             // if given a string value, will use full-text match
    minify    : 'auto'                      // Whether to compress, (true, false or 'auto')
                                            // 'auto' will compress request '(\.|-)min.js' files
    debug     : false                       // Generate __lineno for debug
}));

Refer to compile-middleware#usage for more information.

WARNING No not add a g flag to the RegExp, that will broke the filename extraction procedure. It's an V8 Issue

License

Copyright 2013 Shinohane<imandry.c@gmail.com>

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.