
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
micro-should
Advanced tools
Ultra-simple testing framework without dependencies. Supports async cases.
Ultra-simple testing framework without dependencies. Supports async cases.
Works with any assertion library.
npm install micro-should
const {should} = require("micro-should");
// Built-in node.js assertion lib.
// You can use any other library, like Chai.js or Expect.js.
const assert = require("assert");
should("add two numbers together", () => {
assert.equal(2 + 2, 4);
});
should("catch errors", () => {
assert.throws(() => { throw new Error("invalid"); });
});
should("produce correct promise result", async () => {
const fs = require("fs").promises;
const data = await fs.readFile("README.md", "utf-8");
assert.ok(data.includes("Minimal testing"));
});
// should.only("execute only one test", () => {
// assert.ok(true);
// });
// should.skip("disable one test by using skip", () => {
// assert.ok(false); // would not execute
// })
// Execute this at the end of a file.
should.run();
MIT (c) Paul Miller (https://paulmillr.com), see LICENSE file.
FAQs
Micro testing framework with familiar syntax, multi-env ESM support & parallel execution
The npm package micro-should receives a total of 215 weekly downloads. As such, micro-should popularity was classified as not popular.
We found that micro-should demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.