🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

js-client-file-downloader

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-client-file-downloader

download any data in any format on client side

1.0.7
latest
Source
npm
Version published
Maintainers
1
Created
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

js

FAQs

Package last updated on 09 Feb 2020

Did you know?

Socket

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