Gophress is a fork of Express framework for Gopher instead of HTTP.
Work in progress.
var gophress = require('gophress');
var app = gophress();
app.get('/hello', (req, res) => {
res.send('Hello World');
});
app.listen(3000)
The original author of Express is TJ Holowaychuk