This app works fine with the Deno CLI, but not Deno Deploy:
https://dash.deno.com/playground/jcs224-zbar-wasm-oak
The multipart/form-data file upload doesn't work because it's trying to run Deno.makeTempDir and Deploy doesn't have the ability to write files.
The failing line is 27, const data = await body.value.read().
Is there a way to get the multipart file data without writing a temp dir? I was able to do this with the web-native FormData without Oak:
https://developer.mozilla.org/en-US/docs/Web/API/FormData/get