Firebase: broken pipe when using npm
Hi, I've been playing around with Deno and Firebase/Firestore, put together a short script:
which, if I run (locally or in docker container, deno version 2.2.5), I get the following:
now if I change the imports to
esm.sh
ones, the issue with broken pipe goes away:
when ran, the output is
(no broken pipe, the exit status is 0)
---
Could someone help me understand the difference between these approaches? Afaik the imported packages versions are matching, is there some other difference?3 Replies
That sounds like an unexpected behaviour. Can you file an issue for that here https://github.com/denoland/deno/issues ?
My guess is that we have. a bug in our node streams implementation. esm.sh transpile stuff and likely gives you the browser entry of the firebase package vs the node one. And their browser entry likely uses web streams instead of node streams
I was thinking an issue might be a better thing to do, but wanted to confirm first that I'm not doing anything wrong, thanks for the suggestion, I'll file it shortly.
For reference, the issue is filed under https://github.com/denoland/deno/issues/28610
GitHub
Firebase: broken pipe when using npm · Issue #28610 · denoland/deno
Version: Deno 2.2.5 I've been playing around with Deno and Firebase/Firestore, put together a short script: import "https://deno.land/x/xhr@0.4.3/mod.ts"; import { deleteApp, initiali...