-
-
Notifications
You must be signed in to change notification settings - Fork 325
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing dependency 'stream' #237
Comments
|
It looks like the issue is Angular6-specific, as you can see here . The best solution is using From readable-stream README:
|
I had the same issue so far I solved it changing the |
Is there a way to remove the warning permanently without having to modify sax.js source?? I'm having the same issue on an angular app, although it's just a warning and it's working fine, but the warning is a bit annoying |
Also had this problem and changed to |
Same issue with Angular app |
If you're on Angular App, this is how I solve it:
npm install stream-browserify
"compilerOptions": {
...
"paths": {
...
"stream": ["node_modules/stream-browserify"],
}
} I found out some people had the same issue with timers, so do the same with Hope it helps. |
When installing through NPM and running with webpack I get the following warning:
I think the issue happens when Sax requires
stream
in this lineDoing an
npm install stream
solved the error for me, so adding it to thepackage.json
dependencies should solve it too.To reproduce this install a new Angular enviroment and
npm i angular-dashjs-player
The text was updated successfully, but these errors were encountered: