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.
Extracts require()
from Acme Commander, to complement the CommonJS runtime in development and testing of GLib-heavy apps. Goal differs from Cgjs, not to replicate Node APIs, but to gather code coverage with Gjs built-in feature and, outside tests, give you the convenient module.hot.accept
.
Inspired by ava:
Runs tests concurrently
No implicit globals
Promise support
Having tests run concurrently forces you to write atomic tests, meaning tests don't depend on global state or the state of other tests, which is a great thing!
const { test } = require("gunit");
test("passes after awaiting promise", async t => {
await Promise.resolve();
t.pass();
});
test("compares values", t => {
t.is(1 + 1, 2);
});
Make sure you have all dependencies, including GNOME JavaScript v1.52 or newer, and lcov:
# Ubuntu 17.10
sudo apt update && sudo apt install bash coreutils gir1.2-gtk-3.0 gjs lcov npm
Then install with npm:
npm install --save-dev gunit
Add a script to your package.json
:
{
"name": "awesome-package",
"scripts": {
"test": "gunit"
},
"devDependencies": {
"gunit": "^1.0.1"
}
}
Run it:
npm test
Will find and load *.test.js
in your app directory.
$ gunit --help
Usage: gunit [OPTION]... [LAST_DIRNAME_WHITELIST]...
Find **/*.test.js and run with GNOME JavaScript.
-s, --serial disable concurrency
-h, --help display this help and exit
MIT
FAQs
Gets coverage or dies trying. CommonJS runtime for Gjs
We found that gunit 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.