
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@semyonf/type-safe-validator
Advanced tools
A validation library designed to take full advantage of the TypeScript type system. All return types are inferred directly from the schema.
Originally forked from https://github.com/cjdell/type-safe-validator
A validation library designed to take full advantage of the TypeScript type system. All return types are inferred directly from the schema.
I wanted a library that would guarantee that my validation schema will always fully comply with my TypeScript interfaces. As far I as know, such a library did not exist.
This library aims to completely stop runtime errors by ensuring that a compiled TypeScript program can never mistakenly receive an invalid object from sources such a REST API.
null
and undefined
.ts-essentials
module).Two primary usages depending on preference:
Use assertValid
to get a validated object, or throw if there is an error:
const answer = assertValid(schema, input);
Use getValid
to get a tuple which contains a valid object result, or detailed failure information:
const [answer, errors] = getValid(schema, input);
if (answer !== ValidationFail) {
// Use answer
}
The errors
array will contain a list of all error messages, each with a path
property, and a human readable message
string.
Object schema with different property types, some of which are optional / allow nulls:
interface Schema {
readonly a: string;
readonly b: number | null;
readonly c?: number;
}
const schema = ObjectParser({
a: StringParser(),
b: NumberParser({ nullable: true }),
c: NumberParser({ optional: true })
});
// Mismatch between validation schema and type schema will show as a compile time type error here...
const answer: Schema = assertValid(schema, {
a: 'foo',
b: null,
c: undefined
});
Please see index.spec.ts
for more examples.
const thing: ParserReturn<typeof schema> = {
...
};
This library is a work in progress however I am already using it in two major projects. Feedback is welcome.
FAQs
A validation library designed to take full advantage of the TypeScript type system. All return types are inferred directly from the schema.
We found that @semyonf/type-safe-validator 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.