Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

module file saver not found in angular

I have installed the saver file using

npm install @ types/file-saver --save-dev

Why can't I find the module?

and show this in my project: Module not found: Error: Can't resolve 'file-saver' in 'D:\myAngular\src\app\admin\product'

like image 369
Nyx Avatar asked Aug 13 '26 00:08

Nyx


1 Answers

You have only installed @types/file-saver which is just the type definitions for the actual file-saver package and need to install the latter independently.

npm i file-saver

See this link for a simple example if you're still getting errors.

like image 138
Arcteezy Avatar answered Aug 14 '26 13:08

Arcteezy