
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
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 246 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 official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.