Socket
Socket
Sign inDemoInstall

js-client-file-downloader

Package Overview
Dependencies
3
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    js-client-file-downloader

download any data in any format on client side


Version published
Weekly downloads
4
increased by300%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

JS Client File Downloader

Version License

Introduction

JS Client File Downloader is a simple package to download json, csv, pdf, docx, text files from client side(Browser).

Browser Compatibility

JS File Downloader supports all browsers that are ES5-compliant (IE8 and below are not supported).


Installing with package manager

With a package manager (recomanded):

npm i js-client-file-downloader --save

Basic usage

import { jsFileDownloader } from "js-client-file-downloader";

var json = {
  employee: {
    name: "sonoo",
    salary: 56000,
    married: true
  }
};
var filename = "testing";

//
function onOccuranceOfEvent() {
  jsFileDownloader.makeJSON(obj, filename);
}

Methods:

Suppose on Click method we want to initiate download files

//makeCSV() to make cvs file , An array has to be passed in this method as input
//ie , dataToBeDocumented= [{object},{object},{object}] format.
onClick(()=>{
    jsFileDownloader.makeCSV(<dataToBeDocumented>, <testfileName>)
};


//makeJSON() to make json file , An string has to be passed in this method as input
//ie , dataToBeDocumented=  {
//   employee: {
//     name: "sonoo",
//     salary: 56000,
//     married: true
//   }}; format.

onClick(()=>{
    jsFileDownloader.makeJSON(<dataToBeDocumented>, <testfileName>)
};

//makeTXT() to make json file , An string has to be passed in this method as input
//ie , dataToBeDocumented="string ..."; format.

onClick(()=>{
    jsFileDownloader.makeTXT(<dataToBeDocumented>, <testfileName>)
};


//makeTXT() to make json file , A string has to be passed in this method as input
//ie , dataToBeDocumented="string ..."; format.

onClick(()=>{
    jsFileDownloader.makeTXT(<dataToBeDocumented>, <testfileName>)
};


//makeSimplePDF() to make json file , A string has to be passed in this method as input
//ie , dataToBeDocumented="string ..."; format.

onClick(()=>{
    jsFileDownloader.makeSimplePDF(<dataToBeDocumented>, <testfileName>)
};

//makeBasicDOCX() to make json file , A string has to be passed in this method as input
//ie , dataToBeDocumented="string ..."; format.

onClick(()=>{
    jsFileDownloader.makeBasicDOCX(<dataToBeDocumented>, <testfileName>)
};

//for making advance PDF ie with header,picture..etc, use the following method

var pdf=jsFileDownloader.makeAdvPdf() //this method returns a instance of the jsPDF()

//for making advance DOCx ie with header,picture..etc, use the following method

var { docx, FileSaver }=jsFileDownloader.makeAdvDocX() //this method returns a instance of the docx,and fileSaver





testfileName

output file name

dataToBeDocumented

pass the data that you want to create a file.


#Author


License

MIT

Copyright (c) 2019-present,Souvik Dey

Email : deysouvik955@gmail.com Github : https://github.com/svkdey

Keywords

FAQs

Last updated on 09 Feb 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc