npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tempistry

v1.1.1

Published

ultra light-weight registry for serializing javascript templates and applying pre/post render logic

Downloads

6

Readme

tempistry

Build Status

ultra light-weight registry for serializing javascript templates and applying pre/post render logic

Install

npm install tempistry

Uses temper for compilation, so supports the following rendering engines:

  • jade
  • ejs
  • hogan.js
  • mustache
  • handlebars

Server Side

var tempistry = require('tempistry');

var templateString = tempistry.serialize('/my/templates/file.jade');

// you can send this to the browser as a string and call the function
var clientJS = "var myTemplate = " + templateString;

You can also grab the full template data object that temper provides by passing true as the second param

var data = tempistry.serialize('/my/templates/file.jade', true);

Browserify Transform

If you're using Browserify, the easiest way to plug tempistry into your pipeline is via the included transform, tempistry/transform. You can then require your template files directly and have them automatically registered with tempistry.

# Via cli
browserify -t tempistry/transform main.js
// Via api
var b = browserify().transform('tempistry/transform');
// register pre-render hook
var tempistry = require('tempistry');

tempistry.on('pre-render', function(data) {
	data.helpers = myViewHelpers;
});

var template = require('./things.jade');

// *helpers* will be available in the template due to the pre-render hook above
var html = template({
	name: 'Kellan'
});

Client-Side

Tempistry runs in the browser w/ browserify and acts as a registry to hook pre/post render logic into. This is useful for mixing in common view data such as formatting helpers. It works well when combined with the server side serialize() function, but you can register any function you want with it.

var tempistry = require('tempistry');

// register functions w/ the global tempistry lib, receive the template function back
var template = tempistry.register(function() { /** function string provided from server-side tempistry.serialize() call*/});

// mixin pre/post render logic
tempistry.on('pre-render', function(data) {
    // override "name"
    data.name = 'asher';
});

// wire in post-render logic, receiving the data that was rendered and the html string
tempistry.on('post-render', function(result) {
    console.log(result.data.name); // asher
    console.log(result.html); // html string returned from template fn
});

// call the template function
var html = template({
    name: 'kellan'
});

// name will be 'asher' in the html produced

License

This software is free to use under the Yahoo! Inc. BSD license. See the LICENSE file for license text and copyright information.

Third-pary open source code used are listed in our package.json file.