angularfilesaver.js

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'


Solution

  • 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.