
Product
Socket Firewall Now Blocks Malicious VS Code and Open VSX Extensions
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.
Just another assertion library inspired by Chai Assertion Library and Java Hamcrest with interesting features:
is.not.equal)is.true) that could deliver false positives on a typographic error.npm install xassert --save-dev
# or
npm install xassert
const assert = require('xassert')
const result = 'banana'
assert(result).isEqualTo('banana')
const assert = require('xassert')
assert(obj)
.includesOwnProperty('id', it => it.matches(/[a-z0-9]{9}/)).andIt
.includesOwnProperty('name', it => it.isEqualTo('john'))
// CommonJS
const assert = require('xassert')
const { Assertion, AssertionError } = assert
// Or
import assert, { Assertion, AssertionError } from xassert
const banana = 'I am a banana!'
const apple = 'I am an apple'
// Add a new method
Assertion.prototype.isABanana = function isABanana () {
if (this.actual !== banana) throw this.fire('{name} is not a banana', banana)
return this
}
assert(banana).isABanana()
assert(() => assert(apple).isABanana()).throwsAn(AssertionError)
const assert = require('xassert')
// Reusable assertions on properties
// Note that `assert.fn` is only a helper function for auto-completion in some IDE
const isANumber = assert.fn(it => it.isANumber())
const areNumbers = assert.fn(it => it.every(isANumber))
const isString = assert.fn(it => it.isAString())
const areStrings = assert.fn(it => it.every(isString))
// Assertion on "things"
const things = { colors: ['red', 'blue', 'yellow'], numbers: [1, 2] }
assert(things)
.named('things')
.includesOwnProperty('numbers', areNumbers)
.includesOwnProperty('colors', areStrings)
// Even the whole assertion
const areThings = assert.fn(it => it.named('things')
.includesOwnProperty('numbers', areNumbers)
.includesOwnProperty('colors', areStrings))
areThings(assert(things))
FAQs
xassert is just another assertion library
The npm package xassert receives a total of 5 weekly downloads. As such, xassert popularity was classified as not popular.
We found that xassert 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.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.

Research
More than 140 Mastra npm packages were compromised in a supply chain attack that used a typosquatted dependency to deliver a cross-platform infostealer during installation.

Research
/Security News
A new npm package tests AI malware scanners with prompt injection, safety-triggering comments, context flooding, and obfuscated JavaScript.