
Research
/Security News
npm Author Qix Compromised via Phishing Email in Major Supply Chain Attack
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
numerical derivatives of one-variable functions
Installation via npm:
npm install deriv
Requiring the function takes one line:
var deriv = require("deriv");
Evaluating a derivative also:
x_prime = deriv(function(x){return x*x}, 3, 0.1);
console.log(x_prime)
Output:
{ res: 5.999999999999166, err: 0.15000000000437436 }
The first parameter is the function for which the derivative should be evaluated. The function should have only one parameter, expecting a numeric value. The second parameter x
is the value at which the derivative should be calculated, whereas h
is an appropriately chosen step size. type
is an optional string parameter, which can take either the value forward
or central
. Specifically, this module implements the algorithms used in the numerical differentiation functions of the GSL library and described in the book "S.D. Conte and Carl de Boor, Elementary Numerical Analysis: An Algorithmic Approach, McGraw-Hill, 1972".
FAQs
numerical derivatives of one-variable functions
The npm package deriv receives a total of 7 weekly downloads. As such, deriv popularity was classified as not popular.
We found that deriv 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
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.