express-ajax
v1.0.2
Published
Handle AJAX requests automatically
Downloads
47
Readme
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