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.
hyperformula
Advanced tools
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
A headless spreadsheet • A parser and evaluator of Excel formulas
HyperFormula is a headless spreadsheet built on top of TypeScript. It is a parser and evaluator of Excel formulas for web applications. You can use it in a browser or as a service, with Node.js as your back-end technology.
Install the library from npm:
npm install hyperformula
Once installed, you can use it like this:
import { HyperFormula } from 'hyperformula';
// define the options
const options = {
licenseKey: 'gpl-v3',
};
// define the data
const data = [['10', '20', '30', '=SUM(A1:C1)']];
// build an instance with defined options and data
const hfInstance = HyperFormula.buildFromArray(data, options);
// call getCellValue to get the calculation results
const mySum = hfInstance.getCellValue({ col: 3, row: 0, sheet: 0 });
// print the result in the browser's console
console.log(mySum);
HyperFormula doesn't assume any existing user interface, making it a great general-purpose library that can be used in various business applications. Here are some examples:
Help us build the fastest and most flexible calculation engine for business web apps. Please read the Contributing Guide before making a pull request.
HyperFormula is available under the open source license (GPLv3).
To buy a commercial license, please write to us at sales@handsontable.com
© 2023 Handsoncode
[2.5.0] - 2023-05-29
updateConfig()
method to rebuild HyperFormula only when the new configuration is different from the
old one. #1251FAQs
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
The npm package hyperformula receives a total of 67,022 weekly downloads. As such, hyperformula popularity was classified as popular.
We found that hyperformula demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers 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.