A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/lasso-js/lasso-jade below:

lasso-js/lasso-jade: Plugin for Lasso.js that compiles Jade templates to CommonJS modules.

Plugin for the Lasso.js that compiles Jade templates to CommonJS modules. These templates can easily be rendered using the view-engine module (in conjunction with view-engine-jade).

npm install lasso-jade --save

Enable the plugin:

require('lasso').configure({
    plugins: [
        'lasso-jade'
    ]
});

You will also need to install view-engine and view-engine-jade:

npm install view-engine --save
npm install view-engine-jade --save

Enable the Jade view engine:

require('view-engine').register(
    'jade',
    require('view-engine-jade'));

Render templates on the client or server:

var template = require('view-engine').load('./template.jade');
template.render({
        name: 'Frank'
    },
    function(err, output) {
        console.log('Template output: ', output);
    });

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4