
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A simple npm package for math utilities.
npm install maths_b
or using yarn:
yarn add maths_b
Import and use the package in your JavaScript project:
import { add, substract } from "maths_b";
console.log(add(5, 3)); // Output: 8
console.log(substract(10, 4)); // Output: 6
const { add, substract } = require("maths_b");
console.log(add(5, 3)); // Output: 8
console.log(substract(10, 4)); // Output: 6
add(a, b)a and b.a (number) – First number.b (number) – Second number.number – Sum of a and b.add(2, 3); // 5
substract(a, b)b from a.a (number) – First number.b (number) – Number to subtract.number – Difference of a and b.substract(10, 4); // 6
✅ Simple and lightweight
✅ Supports CommonJS and ES6+
✅ Works in Node.js and browser
We welcome contributions! Follow these steps:
git checkout -b feature-name).git commit -m "Add new feature").git push origin feature-name).This project is licensed under the MIT License.
For any issues, please open an issue or contact me at your-email@example.com.
FAQs
A sample npm package
The npm package maths_b receives a total of 1 weekly downloads. As such, maths_b popularity was classified as not popular.
We found that maths_b demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.