process is not defined
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.
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.
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
This is still a problem. I'm using create-react-app, and readable-stream version 4.7.0.