You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
336 B

6 years ago
const badgen = require('badgen')
module.exports = function serveBadge (req, res, params) {
params.style = req.headers.host === 'flat.badgen.net' ? 'flat' : undefined
6 years ago
res.writeHead(200, {
'Content-Type': 'image/svg+xml;charset=utf-8',
'Cache-Control': 'public, max-age=360, s-maxage=86400'
6 years ago
})
res.end(badgen(params))
6 years ago
}