superguigui / domthingify

Browserify transform for domthing.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Domthingify

Browserify transform for domthing.

Install

npm install domthingify domthing

Usage

Require your domthing templates directly from your scripts, including the .dom extension:

var MyView = View.extend({
    template: require('./path/to/template.dom')
});

Add domthingify to your browserify transform list.

  • With browserify: browserify app.js -o bundle.js -t domthingify

  • With beefy: beefy app.js -- -t domthingify

  • With moonboots:

    var moonbootsConfig = {
        main: __dirname + '/sample/app.js',
        libraries: [ ... ],
        stylesheets: [ ... ],
        browserify: {
            transforms: [ 'domthingify' ]
        }
    };

License

MIT

About

Browserify transform for domthing.


Languages

Language:JavaScript 100.0%