https://github.com/jfhbrook/hoarders
Raw File
Tip revision: 62e81725b29dfb7076565e1613cdad62ab07329d authored by Josh Holbrook on 23 March 2022, 02:28:31 UTC
A simple test with node-tap
Tip revision: 62e8172
example.js
var hoarders = require('.');

var app = hoarders.express();

app.get('/', function (req, res) {
  res.send('hello world!');
});

app.listen(3000, function () {
  console.log('listening on 3000!');
});


back to top