问题
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?
回答1:
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
来源:https://stackoverflow.com/questions/55601669/module-not-found-error-cant-resolve-stream-in-c-dev-jszip-test-node-modul