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

express-jade

v0.0.3

Published

Express middleware to compile client-side Jade templates as template functions in the `window.jade` namespace.

Downloads

10

Readme

express-jade

NPM Version NPM Downloads Build Status Test Coverage

Express middleware to compile client-side Jade templates as template functions in the window.jade namespace.

Here is a quick flow of how it works (see the full Example below):

  1. Your template located at ./views/users/show.jade is loaded from <script src="/js/templates/users/show.js"></script>
  2. You render the template using jade['user/show'](locals), whereas locals is an object (e.g. var locals = { name: 'Nifty', desc: 'Lettuce' };)
  3. Inject the newly rendered HTML from this Jade template into your web page.

This module was created namely for use with Eskimo

Install

npm install -S express-jade

Usage

This middleware should only be used for development mode. For production, use gulp or grunt to pre-compile jade to the assets (public) directory.

Simply require the middleware and invoke it with a path to the jade template directory.

You can also pass a custom namespace as the second argument, and an object of Jade options as the third.

var expressJade = require('express-jade');

var viewsDir = path.join(__dirname, 'views');
var namespace = 'jade';
var jadeOptions = { pretty: true };

// ...

app.get('/js/templates/*', expressJade(viewsDir, namespace, jadeOptions));

// ...

Example

This example is also found in the ./example folder.

index.html:

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>express-jade</title>
  </head>
  <body>

    <!-- The content of this div will change upon page load -->
    <div id="content">Loading user</div>

    <!-- Include the Jade runtime for rendering templates -->
    <!-- Note: Use `bower install -S jade` if you're using Bower  -->
    <script src="/js/jade/runtime.js"></script>

    <!-- Simply load the script and it will inject the template to window namespace -->
    <script src="/js/templates/user/show.js"></script>

    <!-- Very basic usage showing directory traversal as well -->
    <script>
      var $content = document.getElementById("content");
      $content.innerHTML = jade['user/show']({
        user: {
          name: 'Nifty',
          desc: 'Lettuce'
        }
      });
    </script>

  </body>
</html>

views/user/show.jade:


h1= user.name
p= user.desc

app.js:


var express = require('express');
var expressJade = require('../');
var serveStatic = require('serve-static');
var path = require('path');
var app = express();

app.use(serveStatic(path.join(__dirname)));

if (process.env.NODE_ENV !== 'production') {
  var viewsDir = path.join(__dirname, 'views');
  var namespace = 'jade';
  app.get('/js/templates/*', expressJade(viewsDir, namespace));
}

app.listen(3000);

Start the app with node app and open http://localhost:3000.

License

MIT