
Security News
/Research
Popular node-ipc npm Package Infected with Credential Stealer
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.
A dependency-free Geometry and linear algebra library that provides basic vector and matrix calculus operations, written in TypeScript.
Features:
You can either import ella via NPM or directly use it via script tag.
First, run: npm i ella-math
import { Vec, Mat, Mat4 } from 'ella-math';
const a = new Vec(1, 2, 3);
const b = new Vec(2, 3, 4);
console.log('a + b = ', a.add(b));
console.log('a dot b = ', a.dot(b));
console.log('a cross b = ', a.cross(b));
// Define a matrix
// heads up: it's the other way round as you would write it down on paper
// prettier-ignore
const m = new Mat([
1, 2, 3, // column 1
4, 5, 6, // column 2
7, 8, 9, // column 3
]);
const mDet = m.determinant(); // 0
const mInv = m.inverse();
console.assert(
mInv.isFinite() === false,
'As the determinant of m is 0, there is no inverse of m.'
);
const mA = Mat4.identity();
// create a 4x4 translation matrix
const mB = Mat4.translation(-1, -2, -3);
// create a 4x4 scaling matrix
const mC = Mat4.scaling(2, 4, 6);
// matrix multiplication
const mD = mA.mul(mB);
console.assert(mD.equals(mB), 'mA * mB should equal mB');
const mE = mD.mul(mC);
// matrix division is like multiplication with its inverse
const mF = mE.div(mC);
console.assert(mF.isFinite(), 'mF should be finite.');
console.assert(mF.equals(mD), 'mF should be equal to mD');
// the equality check may sometimes fail in JS due
// to floating point arithmetics (.1+.2 !== .3 issue)
// roughlyEquals checks with a tolerance of 1e-14
console.assert(mF.roughlyEquals(mD), 'mF should be roughly equal to mD');
Add this script tag: <script src="https://unpkg.com/ella-math@latest/dist/ella.umd.js"></script>
const { Vec, Mat } = Ella;
FAQs
Basic geometry and linear algebra library
The npm package ella-math receives a total of 29 weekly downloads. As such, ella-math popularity was classified as not popular.
We found that ella-math 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
/Research
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.

Security News
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.

Security News
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.