Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

ktbr

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ktbr

inline ye compiled templates with browserify and the knights-templar module

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

knights-templar-br

inline ye compiled templates with browserify and the knights-templar module.

Build Status

##usage

###api

// template.html
<p><strong>{{name}}</strong> - age {{age}}

// file1.js
var kt = require('knights-templar');
var template = kt.make(__dirname+'template.html', 'hbs');
var markup = template({ name: 'andy', age: 24 });
console.log(markup);

// build.js
var browserify = require('browserify');
var fs = require('fs');
var ktb = require('knights-templar-br');
var bundle = browserify('./file1.js')
.transform(ktb)
.bundle()
.pipe(fs.createWriteStream('./bundle.js'));

###cli

npm install -g ktbr
browserify -t ktbr test/file1.js > bundle.js

Keep in mind that for Handlebars, the bundle will only work if the Handlebars-runtime (or full Handlebars library) is included on the page. Both are available at the Handlebars website. So, using the above as an example, your html should look something like this:

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title></title>
    </head>
    <body>
        
        
        <script src="handlebars-runtime.js"></script>
        <script src="bundle.js"></script>
    </body>
</html>

##license MIT

Keywords

browserify

FAQs

Package last updated on 05 Dec 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts