Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
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.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.