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

temper

v0.3.2

Published

Temper compiles template for client and server side usage.

Downloads

166

Readme

Temper

From bigpipe.ioVersion npmBuild StatusDependenciesCoverage Status

Temper is a small module that compiles your templates for server-side usage and client-side usage through one single interface. This makes it easy to create isomorphic JavaScript applications, which is awesome.

The following template engines are supported:

  • react-jsx, automatically discovered by using the .jsx extension.
  • jade, automatically discovered by using the .jade extension.
  • ejs, automatically discovered by using the .ejs extension.
  • hogan.js, automatically discovered by using the .mustache extension.
  • mustache, automatically discovered by using the .mustache extension.
  • handlebars, automatically discovered by using the .mustache extension.
  • html, automatically discovered by using the .html extension.

As you can see from the list above, we support multiple version engines for the mustache extension. You can supply your preference through the API. If no preference is given it will iterate over the template engines and the one that is successfully required will be used automatically.

Installation

Temper is distributed through npm:

npm install --save temper

Usage

Temper doesn't depend on any template engines so you need to install these your self. For these examples I'm going to assume that you have jade installed as template engine. Run npm install --save jade if this is not the case.

Initialising temper is quite simple:

'use strict';

var Temper = require('temper')
  , temper = new Temper();

The Temper constructor allows the following options:

  • cache should we cache the compiled template, this defaults to true if NODE_ENV is set to production. You usually want to have this disabled during development so you can see the changes in your template without having to restart your node process.

The following methods can be used to interact with temper:

temper.fetch(file, [engine])

The temper.fetch method allows you to pre-compile your template file. This is advised as requiring modules and reading files is done synchronous. Simply call this method with a file location and an option engine argument.

Temper will try it's best to automatically discover template engines based on file extensions, but sometimes this is impossible. There are tons of mustache compatible template engines and we cannot figure out which one you want based on the extension. But for template languages such as jade it's quite simple.

var data = temper.prefetch('/file/path/to/template.jade');
var data = temper.prefetch('/file/path/to/template.mustache', 'hogan.js');

Data structure

The fetch method returns an JavaScript object that contains the following properties:

The interface

The resulting compiled template have a uniform interface. It's a function that accepts the template data as first argument and returns the generated template.

var template = temper.fetch('/file/path/to/template.jade')
  , html = template({ foo: 'bar' });

console.log(html);

License

MIT