1.0.2 • Published 12 years ago

express-ajax v1.0.2

Weekly downloads
85
License
-
Repository
github
Last release
12 years ago

express-ajax

Automatically AJAX requests handling middleware for Express framework

Installation

npm install express-ajax

Usage

To be able return only your view without it's layout, in case if request came through XmlHttpRequest, just include this middleware in your your Express configuration section. No need to do additional changes in your code.

app.configure(function() {
  app.use(require('express-ajax'));
});

That's it