angular-file-saver icon indicating copy to clipboard operation
angular-file-saver copied to clipboard

An AngularJS service that provides cross-browser compatibility of HTML5 saveAs() - http://alferov.github.io/angular-file-saver

Results 34 angular-file-saver issues
Sort by recently updated
recently updated
newest added

## 🤔 Problem - FileSaver.js package was outdated from Teleborder repository ``` bower file-saver.js#~1.20150507.2 ECMDERR Failed to execute "git ls-remote --tags --heads https://github.com/Teleborder/FileSaver.js.git", exit code of #128 remote: Repository not...

Hi Team, We are facing below issue :- remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. 04:04:09,874 [Thread-6] [ERROR] remote:...

We are seeing a legacy angular build of ours fail due to what appears to be the disappearance of `file-saver.js#~1.20150507.2` . The repository it comes from `https://github.com/Teleborder/FileSaver.js.git/` is no longer...

Hi, I'm using FileSaver in a standalone angular app. When trying to save the file, a dialog with choosing place to save a file appears. My question is: is it...

Have tested the library in all Browsers successfully except Safari. It just doesn;t works in Safari and instead opens the file directly in browser. I have to download Zip content....

On Safari doesn't work. How I can implement this on Safari. var blob= new Blob([xmlDoc],{type:'application/octet-stream'}); saveAs(blob,fileName);

I have used new Blob to save file in angular. var textData='test'; var data = new Blob([textData], { type: 'application/xhtml+xml;charset=utf-8' });. I get below error. [object BlobConstructor]' is not a...

Is there a way to configure Angular File Saver to export an html web page to an excel file, without having to see this error message from excel? (And do...

hello everyone I getting a string base64 from my service REST and I show it as PDF data:application/pdf;base64,... using the pdfViewr library for angular4 so I need to downlaod this...