2.0.1 • Published 4 years ago

wants-json v2.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

wants-json

Build Status

A tiny ExpressJS middleware to figure out if a JSON response is expected.

When you have a single page app, you probably communicate in JSON with the server. But on the first page load you send the HTML. With this middleware you can distinct between these two requests.

ExpressJS middleware example for single page apps

var wantsJson = require('wants-json'),
    express   = require('express'),
    app       = express()

app.use(wantsJson())

app.get('/data', function(req, res, ext) {
    if (req.wantsJson()) {
        // load data and send to client
    } else {
        // send single page app
        next && next()
    }
})
2.0.1

4 years ago

2.0.0

5 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

9 years ago

1.0.0

9 years ago