Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@madnetter/data-forge
Advanced tools
JavaScript data transformation and analysis toolkit inspired by Pandas and LINQ.
Fork of the Data-Forge project.
See the official repository for the original data forge project source code.
See the official registry for the original data forge npm package.
Please support the original authors work!
The JavaScript data transformation and analysis toolkit inspired by Pandas and LINQ.
Implemented in TypeScript.
Used in JavaScript ES5+ or TypeScript.
To install for Node.js and the browser:
npm install --save data-forge
If working in Node.js and you want the functions to read and write data files:
npm install --save data-forge-fs
Data-Forge can load CSV, JSON or arbitrary data sets.
Parse the data, filter it, transform it, aggregate it, sort it and much more.
Use the data however you want or export it to CSV or JSON.
Here's an example:
const dataForge = require('data-forge');
require('data-forge-fs'); // For readFile/writeFile.
dataForge.readFileSync('./input-data-file.csv') // Read CSV file (or JSON!)
.parseCSV()
.parseDates(["Column B"]) // Parse date columns.
.parseInts(["Column B", "Column C"]) // Parse integer columns.
.parseFloats(["Column D", "Column E"]) // Parse float columns.
.dropSeries(["Column F"]) // Drop certain columns.
.where(row => predicate(row)) // Filter rows.
.select(row => transform(row)) // Transform the data.
.asCSV()
.writeFileSync("./output-data-file.csv"); // Write to output CSV file (or JSON!)
Data-Forge has been tested with Browserify and Webpack. Please see links to examples below.
If you aren't using Browserify or Webpack, the npm package includes a pre-packed browser distribution that you can install and included in your HTML as follows:
<script language="javascript" type="text/javascript" src="node_modules/data-forge/dist/web/index.js"></script>
This gives you the data-forge package mounted under the global variable dataForge
.
Please remember that you can't use data-forge-fs or the file system functions in the browser.
FAQs
JavaScript data transformation and analysis toolkit inspired by Pandas and LINQ.
We found that @madnetter/data-forge demonstrated a healthy version release cadence and project activity because the last version was released less than 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.