
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
A small, fast, non-trivial, dependency-free, non-stick, fully-franked, run-time type checker with an idiomatic API.
HERALDRY
Describe or depict (armorial bearings) in a correct heraldic manner.
var blazon = require('blazon');
var { Maybe, Custom } = blazon;
const Email = blazon(blazon.And(
String,
Custom(value =>
value.match(/^.+@[^.].*?\..*[^.]$/) ? value : throw new Error('Value must be an email')
)
));
const User = blazon({
firstName: String,
surname: String,
email: Maybe(Email),
nickname: Maybe(String, 'Buddy'),
age: Number
});
function greetUser(maybeNotAValidUser){
// Throws if invalid.
var user = User(maybeNotAValidUser);
// user is valid at this point.
}
On an i7 laptop:
100,000 non-trivial Types can be defined in ~700ms
100,000 non-trivial passing checks can be performed in ~130ms
10,000 non-trivial failing checks can be performed in ~37ms
value type constructors are valid, eg:
String, Number, Boolean
Extra types provided by blazon:
List(Type[, minLength, maxLength)Ensure every item in array matches Type, and optionally, that the length is between a min and max.
Maybe(Type, default<optional>)Ensure a value is either Type or null/undefined.
And(Types...)Ensures a value is every one of Types.
Or(Types...)Ensures a value is any one of Types.
Exactly(value)Ensures a value is exactly value
Cast(BaseType) OR Cast(sourceType, targetType, fn customConverer(value, target))Casts a value to a BaseType OR Casts from anything to anything with a customConverter.
Custom(fn<value, target, trace>)Ensures fn(value) does not throw.
The value returned from fn will be the result of the type instantiation.
ensure(types..., function)Create a function which only accepts specifically typed arguments.
FAQs
A fast run-time non-trivial type checker with an idiomatic API
The npm package blazon receives a total of 1 weekly downloads. As such, blazon popularity was classified as not popular.
We found that blazon 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.