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.
rufflib-expect
Advanced tools
A RuffLIB library for unit testing rough and sketchy JavaScript apps.
A RuffLIB library for unit testing rough and sketchy JavaScript apps.
▶ Version: 3.0.4
▶ Homepage: https://richplastow.com/rufflib-expect
▶ NPM: https://www.npmjs.com/package/rufflib-expect
▶ Repo: https://github.com/richplastow/rufflib-expect
▶ Tests: https://richplastow.com/rufflib-expect/test/run-browser-tests.html
import Expect from 'rufflib-expect';
const expect = new Expect('Mathsy Test Suite');
expect.section('Check that factorialise() works');
expect.that(`factorialise(5) // 5! = 5 * 4 * 3 * 2 * 1`,
factorialise(5)).is(120);
console.log(expect.render('Ansi'));
function factorialise(n) {
if (n === 0 || n === 1) return 1;
for (let i=n-1; i>0; i--) n *= i;
return n;
}
Run the test suite in ‘src/docs/’, while working on this library:
npm test --src
npm start --src --open --test
Build the minified and unminified bundles in ‘dist/’ and ‘docs/’:
npm run build
Run the test suite in ‘docs/’, after a build:
npm test
npm start --open --test
FAQs
A RuffLIB library for unit testing rough and sketchy JavaScript apps.
The npm package rufflib-expect receives a total of 0 weekly downloads. As such, rufflib-expect popularity was classified as not popular.
We found that rufflib-expect 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
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.