res.type('.html') // => 'text/html'
res.type('html') // => 'text/html'
res.type('json') // => 'application/json'
res.type('application/json') // => 'application/json'
res.type('png') // => 'image/png'
res.type('mp3') // => 'audio/mp3'
res.type('txt');
res.send(JSON.stringify({...}));