For example, adding a few functions: .get(key).pipe(res), .file(key, filename).pipe(res)
var hyperdrivehttp = require('hyperdrive-http')
var express = require('express')
var router = express()
var drive = hyperdrivehttp(getArchive)
router.get('/hi/:key', function (req, res) {
drive.get(req.params.key).pipe(res)
})