
Security News
libxml2 Maintainer Ends Embargoed Vulnerability Reports, Citing Unsustainable Burden
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
js-client-file-downloader
Advanced tools
JS Client File Downloader is a simple package to download json, csv, pdf, docx, text files from client side(Browser).
JS File Downloader supports all browsers that are ES5-compliant (IE8 and below are not supported).
With a package manager (recomanded):
npm i js-client-file-downloader --save
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);
}
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
output file name
pass the data that you want to create a file.
#Author
Copyright (c) 2019-present,Souvik Dey
Email : deysouvik955@gmail.com Github : https://github.com/svkdey
FAQs
download any data in any format on client side
We found that js-client-file-downloader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.