Add support for RFC 2324 to any HTTP server.

npm install http-teapot
or if you're going to use the cli
npm install http-teapot -g
Just add http-teapot as a routing function. It supports most routing modules including Express and router.
Express example:
var teapot = require('http-teapot');
var app = express();
app.get('/teapot', teapot);
app.listen(1337);
Now, if you visit http://localhost:1337/teapot you must see a teapot ;)
There is also a built in HTTP server that you can start from the command line.
If you install the module globally you can run the server by running the http-teapot command.
MIT