Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
json-to-csv-in-browser
Advanced tools
This converts the json array in the browser to csv file that can be stored in disc
This module creats the csv file inside the browser itself supply jsonarray it will give back file of csv
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Test</h1>
<button id="btn">Click</button>
</body>
<script type="module"src="client.js" ></script>
</html>
import {JsonArray, download} from "./node_modules/json-to-csv-in-browser/lib/index.js"
mybtn = document.getElementById("btn").addEventListener("click",()=>{
let arr = [
{name : `umesh, bilsgai
sghg
susuus`, age : 53},
{name : "ramya", age : 38},
{name : "pradyu", age : 22}
]
let jsonArray = new JsonArray(arr);
let str = jsonArray.convertToCSVstring();
download("my.csv", str);
FAQs
This converts the json array in the browser to csv file that can be stored in disc
The npm package json-to-csv-in-browser receives a total of 88 weekly downloads. As such, json-to-csv-in-browser popularity was classified as not popular.
We found that json-to-csv-in-browser 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 a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.