browsersavefile

0.0.6 • Public • Published

browser support

browsersavefile

browsersavefile(fileName, blob)

browsersavefile will take a file name and a Blob object. It will then download the file from the users browser.

Params

  • fileName String - The file name of the file you'd like to save as
  • blob Blob - File you'd like to save out

Example

var browsersavefile = require( 'browsersavefile' );
 
var someHTML = [ '<div>HELLO WORLD</div>' ],
    blobData = new Blob( someHTML, {type : 'text/html'});
    
browsersavefile( 'my file', blobData );

Package Sidebar

Install

npm i browsersavefile

Weekly Downloads

0

Version

0.0.6

License

MIT

Last publish

Collaborators

  • mikkoh