
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
json2csv-export
Advanced tools
A simplest javascript library that help you generate csv file and export
npm install json2csv-export --save
or
yarn add json2csv-export
or use cdn bellow before end of body tag
<script src="https://unpkg.com/json2csv-export@1.0.5/index.js"></script>
import { exportCsv } from "json2csv-export";
const yourCustomFunction = () => {
const header = {
name: "Fullname",
age: "Age",
designation: "Designation",
role: "Profession",
education: "Study",
hometown: "Current City",
email: "Email Address",
post: "Total Post",
};
const data = [
{
name: "Shahan Chowdhury",
age: "26",
designation: "Mr.",
role: "Software Engineer",
education: "Computer Science and Engineering",
hometown: "Sylhet",
email: "shahan@test.com",
post: 27,
},
{
name: "Rayhan Chowdhury",
age: "31",
designation: "Mr.",
role: "Test Engineer",
education: "CS",
hometown: "Sylhet",
email: "rayhan@test.com",
post: 25,
},
];
exportCsv({
header, // header is optional. If you don't pass header, it will take keys from data
data,
filename: 'yourfilename' // the file will downloaded yourfilename.csv
});
};
`
Support me by giving star
FAQs
A javascript library to convert json array into csv
We found that json2csv-export 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.
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.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.