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

hmpo-template-mixins

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hmpo-template-mixins

A middleware that exposes a series of Mustache mixins on res.locals to ease usage of forms, translations, and some general needs.

  • 0.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
107
increased by181.58%
Maintainers
1
Weekly downloads
 
Created
Source

passport-template-mixins

A middleware that exposes a series of Mustache mixins on res.locals to ease usage of forms, translations, and some other things.

It takes in three arguments t a function that shall be executed to translate keys into strings of the current locale, a fields object describing config related to the keys that are passed into the mixins that refer to fields, and an options object that has three keys viewsDirectory that allows you override the directory that the module checks for partials in (defaults to looking inside the root of this project), viewEngine which allows you to alter the file extension of the templates, and sharedTranslationsKey which stores a relative key from which to look for field and button translations.

Installation

npm install [--save] hmpo-template-mixins;

Usage

var express = require('express');
var i18n = require('i18next');

var fields = require('./routes/renew-your-passport/fields');

app.set('view engine', 'html');
app.set('views', path.join(__dirname, '/views'));
app.use(require('hmpo-template-mixins')(i18n.t, fields, { sharedTranslationsKey: 'passport.renew' }));

app.use(function (req, res) {
    // NOTE: res.locals.partials has been set.

    res.render('example-template');
});

Mustache mixins available

t
time
selected
lowercase
uppercase
hyphenate
date
currency
select
input-text
input-date
input-text-compound
input-text-hidden-label
input-text-postcode
input-phone
radio-group
checkbox
checkbox-compound
checkbox-required
input-submit

Keywords

FAQs

Package last updated on 13 Feb 2015

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