compile-mw-jade-runtime

0.1.2 • Public • Published

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

Browser

It is recommended you load script for views with some CommonJS Loader.

Here is an example use with Sea.js

 
seajs.use("http://server.example.com/ui/abc?callback=define",
    function(template) {
        $(template(arguments)).appendTo('body');
    });
 

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.

Readme

Keywords

none

Package Sidebar

Install

npm i compile-mw-jade-runtime

Weekly Downloads

2

Version

0.1.2

License

Apache License v2.0

Last publish

Collaborators

  • shinohane