
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
formalist-validation
Advanced tools
Data validation library for Formalist based on predicate logic.
Data validation library for Formalist based on predicate logic.
The scope of the library is very simple. It tests a value
against a given schema
and returns an array of relevant error messages.
import validation from 'formalist-validation'
// Define a schema
const schema = {
"filled": true,
"min_size": 2,
"max_size": 3,
}
// Curry validator with the schema
const validator = validation(schema)
// Test
validator([1])
// => ['size cannot be less than 2']
validator([1,2])
// => []
validator([1,2,3])
// => []
validator([1,2,3,4])
// => ['size cannot be greater than 3']
View the full list of available predicates to see what else you can test.
value
to test or the schema specifies that to test that the value
is 'filled'
.AND
s. There’s no support for more complex logic at at the moment.v1.0.0 2017-02-23
FAQs
Data validation library for Formalist based on predicate logic.
The npm package formalist-validation receives a total of 258 weekly downloads. As such, formalist-validation popularity was classified as not popular.
We found that formalist-validation 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 MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.