An open API service indexing awesome lists of open source software.

https://github.com/binarykitchen/wants-json

Tiny middleware to figure out if a JSON response is expected
https://github.com/binarykitchen/wants-json

Last synced: about 1 year ago
JSON representation

Tiny middleware to figure out if a JSON response is expected

Awesome Lists containing this project

README

          

# wants-json

[![Build Status](https://travis-ci.org/binarykitchen/wants-json.svg?branch=master)](https://travis-ci.org/binarykitchen/wants-json)

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

```js
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()
}
})
```