Name Last Update
..
MIT-LICENSE Loading commit data...
README.md Loading commit data...
package.json Loading commit data...
pjax.js Loading commit data...

express-pjax

Express middleware for Pjax.

Installation

npm install express-pjax

Usage

If you use res.renderPjax method, the request of pjax will be handled automatically.

var express = require('express');
var pjax    = require('express-pjax');
var app     = express.createServer();

app.configure(function() {
  app.use(pjax());
  // -- snip --
});

app.get('/', function(req, res) {
  res.renderPjax('index', { locals: { hello: "Hello World!" } });
});

app.get('/foo', function(req, res) {
  res.renderPjax('foo');
});

TODO

  • Support redirect.

Copyright

Copyright (C) 2011 Dai Akatsuka, released under the MIT License.