readable-stream icon indicating copy to clipboard operation
readable-stream copied to clipboard

process is not defined

Open sandeepworks25 opened this issue 1 year ago • 3 comments

Hi! 👋

Firstly, thanks for your work on this project! 🙂

Today I used patch-package to patch [email protected] for the project I'm working on.

Here is the diff that solved my problem:

diff --git a/node_modules/readable-stream/lib/_stream_readable.js b/node_modules/readable-stream/lib/_stream_readable.js
index df1f608..8d8a808 100644
--- a/node_modules/readable-stream/lib/_stream_readable.js
+++ b/node_modules/readable-stream/lib/_stream_readable.js
@@ -487,7 +487,7 @@ function emitReadable(stream) {
   if (!state.emittedReadable) {
     debug('emitReadable', state.flowing);
     state.emittedReadable = true;
-    process.nextTick(emitReadable_, stream);
+    setTimeout(() => emitReadable_(stream), 0);
   }
 }
 function emitReadable_(stream) {

This issue body was partially generated by patch-package.

sandeepworks25 avatar Sep 19 '24 14:09 sandeepworks25

Could this be related to #539? Both are caused by the attempt to use process.nextTick, though in your case it seems that process is completely undefined.

WasabiThumb avatar Sep 30 '24 21:09 WasabiThumb

in vue3 app the process is undefined as well.. please do not use the process variable at all or revert it to the version where it used to work

scholtz avatar Oct 21 '24 19:10 scholtz

This is still a problem. I'm using create-react-app, and readable-stream version 4.7.0.

Type1J avatar Jan 21 '25 18:01 Type1J