A super lightweight router (1.0K) with middleware support and ZERO dependencies for Cloudflare Workers.
227
stars
30
forks
source link
When using middleware how do you use the body multiple times in each middleware? #31
Closed
kalepail closed 8 months ago
I'm getting the error
Body has already been used. It can only be used once. Use tee() first if you need to read it twice.
Normally you'd use
req.clone
orres.clone
but clone doesn't appear to exist onreq
orres
for this library.