http-teapot
Version:
Add a teapot easter egg to any HTTP server.
17 lines (13 loc) • 384 B
JavaScript
;
var fs = require('fs');
var path = require('path');
var body = '<center>418: I\'m a teapot</center><script>' +
fs.readFileSync(path.join(__dirname, 'teapot.min.js')) +
'</script>';
module.exports = function (req, res) {
res.writeHead(418, {
'Content-Length': Buffer.byteLength(body),
'Content-Type': 'text/html; charset=utf-8'
});
res.end(body);
};