
Security News
npm v12 Ships With Install Scripts Off by Default, Begins Deprecating 2FA-Bypass Tokens
npm v12 is generally available, turning install scripts off by default and beginning the deprecation of 2FA-bypass publishing tokens.
The ultimate CLI tool for complex math, physics, engineering, and data science computations.
Powered by Kontyra
MathGuru is a unified ecosystem-grade mathematics platform for CLI + SDK workflows: symbolic math, graphing, LaTeX conversion, formulas, trainer exercises, markdown math tools, conversions, exports, and sessions.
npm install mathguru
npm install -g mathguru
CLI aliases: mathguru and mg.
mathguru calc "diff(x^2)"
mathguru differentiate "x^3 + 2*x"
mathguru integrate "sin(x)"
mathguru solve "x^2 - 4 = 0"
mathguru graph "sin(x)"
mathguru graph "x^2" --format svg --size 640x360
mathguru latex "sin(x)^2 + cos(x)^2"
mathguru formula economics cobb-douglas
mathguru search derivative
mathguru explain inflation
mathguru trainer calculus --difficulty medium --count 3
mathguru convert 5 km miles
mathguru median 1 3 5 9
mathguru stats-summary 1 2 2 4 5
mathguru circle-area 5
mathguru hypotenuse 3 4
mathguru matrix-multiply "[[1,2],[3,4]]" "[[5,6],[7,8]]"
mathguru matrix-det "[[1,2],[3,4]]"
mathguru md notes.md
mathguru doctor
mathguru shell
Shell supports persistent commands, history, help, clear, stats, exit, and symbolic shorthand such as:
mathguru> integrate(sin(x))
mathguru> graph x^2
const mathguru = require('mathguru');
mathguru.calc.integrate('sin(x)');
mathguru.graph.plot('x^2', { size: '40x20' });
mathguru.latex.convert('x^2 + 1');
mathguru.formulas.get('cobb-douglas', 'economics');
mathguru.finance.compoundInterest(1000, 5, 2, 12);
mathguru.statistics.summary([1, 2, 2, 4, 5]);
mathguru.geometry.distance2d(0, 0, 3, 4);
mathguru.matrix.multiply(
[
[1, 2],
[3, 4],
],
[
[5, 6],
[7, 8],
]
);
mathguru save-session demo
mathguru load-session demo
mathguru export-session csv demo
mathguru export history markdown
mathguru config set precision 2
mathguru config set graphSize 80x20
mathguru config set graphFormat svg
mathguru config set exportFormat markdown
npm test
npm run coverage
npm run doctor
npm run benchmark
Professional test suite covers calc, formulas, graph, latex, trainer, markdown, cli, shell, sdk, config/export/session/history, conversion, parser, and integration.
Prepared architecture (not implemented by design):
See CONTRIBUTING.md, RELEASE.md, and docs/.
MIT
FAQs
The ultimate CLI tool for complex math, physics, engineering, and data science computations.
We found that mathguru 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.

Security News
npm v12 is generally available, turning install scripts off by default and beginning the deprecation of 2FA-bypass publishing tokens.

Research
/Security News
Socket tracks the activity as Operation “Muck and Load”: a threat actor uses commit-farming workflows, public dead drops, and protected archives to stage Windows RAT and infostealer malware.

Security News
pnpm 11.10 hardens registry auth to block token redirection, tightens pack-app and deploy, and makes the Rust port (v12) installable.