
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.
namebase-types
Advanced tools
This package lets you do things like this:
const {
OR,
OBJECT,
STRING,
INTEGER,
BOOLEAN,
ENUM,
exceptions,
} = require('namebase-types');
const parser = OR(
OBJECT({
a: STRING,
b: INTEGER,
}),
OBJECT({
a: STRING,
b: INTEGER,
c: BOOLEAN,
d: ENUM(10, 20),
}),
)
// returns { a: "foo", b: 4 }
parser({ a: "foo", b: 4 })
// returns { a: "foo", b: 4, c: true, d: 20 }
parser({ a: "foo", b: 4, c: true, d: 20 })
// throws exceptions.InvalidType({ key: "a" })
parser({ a: false, b: 4, c: true, d: 20 })
// throws exceptions.MissingKey({ key: "b" })
parser({ a: "foo", c: true, d: 10 })
// throws exceptions.MissingKey({ key: "c" })
parser({ a: "foo", b: 4, d: 10 })
// throws exceptions.ExtraKey({ key: "e" })
parser({ a: "foo", b: 4, c: true, d: 10, e: "bar" })
Check the tests for more details. Note: instead of passing in the built-in primitives (STRING, INTEGER, BOOLEAN, ENUM, OBJECT), you can pass in any parsing function that returns its parsed input on success (and throws otherwise).
MIT License: https://igliu.mit-license.org
FAQs
Check types at runtime.
The npm package namebase-types receives a total of 9 weekly downloads. As such, namebase-types popularity was classified as not popular.
We found that namebase-types 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.

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.