New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

express-handlebars-multi

Package Overview
Dependencies
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-handlebars-multi

Express handlebars view engine with support for multiple layouts, partials, and views directories

  • 0.2.31
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
81
increased by326.32%
Maintainers
1
Weekly downloads
 
Created
Source

express-handlebars-multi

express-handlebars-multi provides functionality that is largely similar to express-handlebars with added support for multiple views, layouts, and partials directories.

express-handlebars-multi uses a single global instance for configuration and caching.

Usage

var express = require('express')
var expressHandlebarsMulti = require('express-handlebars-multi')

var app = express()

var engine = expressHandlebarsMulti({
    defaultLayout: 'main.layout',
    ext: '.hbs',
    helpers: {
        fooHelper: function (val) {
            return 'foo: '+val
        },
    },
    layoutDirs: ['/bar/layouts', '/foo/layouts'],
    partialDirs: ['/var/partials', '/foo/partials'],
})

app.engine('.hbs', engine)
app.set('view engine', '.hbs')
app.set('views', ['/bar/views', '/foo/views'])

// enable caching -- enabled by default when NODE_ENV === 'production'
app.enable('view cache')

Reseting global config and caches

var expressHandlebarsMulti = require('express-handlebars-multi')

expressHandlebarsMulti.reset()

Setting/getting global config options

var expressHandlebarsMulti = require('express-handlebars-multi')

expressHandlebarsMulti.config({
    helpers: {
        barHelper: function (val) {
            return 'bar: '+val
        },
    },
})

var config = expressHandlebarsMulti.config()

FAQs

Package last updated on 18 Nov 2018

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