18

I'm using jszip v3.2.1 in an angular 7 application. When I build my project (running, for example, npm start) I'm getting the following error:

ERROR in ./node_modules/jszip/lib/readable-stream-browser.js

Module not found: Error: Can't resolve 'stream' in 'C:\dev\jszip-test\node_modules\jszip\lib'

How can I solve this problem?

Ricardo Rocha
  • 11,592
  • 13
  • 62
  • 108

3 Answers3

51

After reading this post I found out that the stream package was missing from my project.

You can install it by running the following command:

npm i stream
Ricardo Rocha
  • 11,592
  • 13
  • 62
  • 108
2

This issue encountered when importing web3 to your project. Please follow steps in below article.

https://medium.com/@rasmuscnielsen/how-to-compile-web3-js-in-laravel-mix-6eccb4577666

Fix is:-

Wherever you import the web3 library, change your import from

import Web3 from 'web3'

to import Web3 from 'web3/dist/web3.min.js'

kemparaj565
  • 331
  • 2
  • 6
1

In my case, I wanted to import EventEmitter and added it accidentally from stream package instead of @angular/core package.

Martin Staufcik
  • 6,954
  • 4
  • 36
  • 58