
Company News
Socket Named to Rising in Cyber 2026 List of Top Cybersecurity Startups
Socket was named to the Rising in Cyber 2026 list, recognizing 30 private cybersecurity startups selected by CISOs and security executives.
@rain-cafe/validify
Advanced tools
NOTE: Still a WIP and may be breaking changes within the first major version
An incredibly simple object validation library
import { Validator, isDefined, isAlpha } from '@rain-cafe/validify';
type MyCustomType = {
name: string;
version: string;
i18n: {
en: {
hello: string;
};
};
users: Array<{
first: string;
last: string;
}>;
};
const validator = new Validator<MyCustomType>({
name: [isDefined, isAlpha],
i18n: {
en: {
hello: [isDefined, isAlphaNumeric],
},
},
users: {
first: [isDefined, isAlpha],
last: [isDefined, isAlpha],
},
});
const myObject = {
name: 'App',
version: '1.0.0',
i18n: {
en: {
hello: 'world',
},
},
users: [
{
first: 'Cecilia',
last: 'Sanare',
},
],
};
const errors = validator.check(myObject); // returns a list of all the validator failure reasons
validator.validate(myObject); // throws an error containing all of the validator failure reasons
validator.isValid(myObject); // returns true if the object passes all of the validators
validator.isInvalid(myObject); // returns true if the object fails any of the validators
FAQs
An incredibly simple object validation library
We found that @rain-cafe/validify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.

Company News
Socket was named to the Rising in Cyber 2026 list, recognizing 30 private cybersecurity startups selected by CISOs and security executives.

Research
Socket detected 84 compromised TanStack npm package artifacts modified with suspected CI credential-stealing malware.

Security News
A dispute over fsnotify maintainer access set off supply chain alarms around one of Go’s most widely used filesystem libraries.