1.2.0 • Published 7 years ago
exphbs v1.2.0
exphbs
A Handlebars view engine for Express.
Features
Layouts:
- Declaring layout with a render option or template comment (
{{!< layout}}
) - Nested layouts with arbitrary depth
Partials:
- Autoloading from defined directory (defaults to
views/partials
) - Namespaced partial names (based on relative paths)
- Supports any file extension (defaults to
hbs
andhtml
) - Dynamically applying changes during development
Helpers:
- Autoloading from defined directory (defaults to
views/helpers
)
Block inheritance:
- Defining named blocks in layouts then extend them in templates
Variables:
- Defining
@variables
that can be accessed from any context in a template
Precompiling:
- Templates and partials are precompiled and cached in production
Instances:
- Creating a new instance of separate cache
- Instantiating with user-provided Handlebars object
Getting started
Installation:
$ npm install exphbs
Registering view engine:
app.engine('hbs', require('exphbs'));
app.set('view engine', 'hbs');
Default directory structure:
.
├── app.js
└─┬ views/
├── index.hbs
├── helpers/
├── layouts/
└── partials/
Example
Check out example directory for a complete example. You can play around with it on Runnable.
Docs
Tests
$ npm install
$ npm test
License
MIT
1.2.0
7 years ago
1.1.0
9 years ago
1.0.2
9 years ago
1.0.1
9 years ago
1.0.0
10 years ago
0.0.16
10 years ago
0.0.15
10 years ago
0.0.14
10 years ago
0.0.13
10 years ago
0.0.12
10 years ago
0.0.11
10 years ago
0.0.10
10 years ago
0.0.9
10 years ago
0.0.8
10 years ago
0.0.7
10 years ago
0.0.6
10 years ago
0.0.5
10 years ago
0.0.4
10 years ago
0.0.3
10 years ago
0.0.2
10 years ago
0.0.1
10 years ago