We should think about creating a duplex stream that is independent from HTTP requests. ```js var api = manner({}) // somewhere in a http server input(req, res) .pipe(api) .pipe(res) ``` It might be in a separate module. This would allow to be transport free.