Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

brick-hbs

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

brick-hbs

Handlebars Template Engine for Brick.js

  • 2.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

NPM version Build Status Coverage Status Dependency manager

Handlebars Template Engine for Brick.js.

Run the Demo

demo/ directory contains a demo project. Run the demo:

git clone git@github.com:brick-js/brick-hbs.git
cd brick-hbs && npm install
cd demo && npm install
grunt

Open http://localhost:3000 in your browser!

Installation

npm install -S brick-hbs

Set template engine for brick.js

var brickJs = require('brick.js');
var Hbs = require('brick-hbs');

var brk = brickJs();

var hbs = Hbs.brick({
    cache: false    // disabled by default, see below
})
brk.engine('.hbs', hbs);     // set hbs engine for .hbs file
brk.engine('.html', hbs);    // set hbs engine for .html file

app.use('/', brk.express);

Include Partials/Modules

In Brick.js, partials are organized as modules. Eg:

File footer/view.hbs in module footer:

<footer> Powered by Brick.js </footer>

File home/view.hbs in module home:

<html>
<body>
  <p>Demo Page</p>
  {{include 'footer'}}
</body>
</html>

The HTML for home page will be rendered as:

<html>
<body>
  <p>Demo Page</p>
  <footer> Powered by Brick.js </footer>
</body>
</html>

Layout Extend

Brick-hbs implemented async helper internaly, to support layout extend. Eg:

File layout1/view.html in module layout1:

<html>
<title>Common Title</title>
<body>
  {{{block}}}
</body>
</html>

Use {{block}} for escaping.

File home/view.hbs in module home:

{{extend 'layout1'}}
<p> Contents for home page </p>

The HTML for home page will be rendered as:

<html>
<title>Common Title</title>
<body>
  <p> Contents for home page </p>
</body>
</html>

Options

cache

Type: Bool

Default: false

If set to true, all templates will be loaded only once (for production usage). Otherwise, template file will be reloaded on every HTTP request.

Register New Helper

Above declared Hbs object is compatible with Handlebars.

Javascript:

Hbs.registerHelper('upperCase', function(content) {
    return content.toUpperCase();
});

Template:

<h3>{{upperCase 'alice'}}</h3>

Will be rendered as:

<h3>ALICE</h3>

FAQs

Package last updated on 25 May 2016

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc