
Security News
NIST Officially Stops Enriching Most CVEs as Vulnerability Volume Skyrockets
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.
Universal schema-driven validation library for both frontend and backend. Backend-oriented, plugin-friendly, and form-library compatible.
Universal schema-driven validation library for both frontend and backend.
Backend-oriented. Plugin-friendly. Built to power forms, APIs, and databases with a single source of schema truth.
npm install toku
or with yarn:
yarn add toku
import { defineSchema, validate } from "toku";
const userSchema = defineSchema({
name: "string|min:3|max:20",
age: "number|min:18",
email: "email|required",
});
// validate some data
const result = validate(userSchema, {
name: "Alice",
age: 25,
email: "alice@example.com",
});
if (result.success) {
console.log("Valid:", result.data);
} else {
console.log("Errors:", result.errors);
}
@toku/sql – Generate SQL migrations from schema@toku/formik – Auto-generate Formik validation logic@toku/test – Generate randomized test data from schemaFull documentation coming soon.
For now, check the /examples folder and follow updates here: https://github.com/manishgun/toku
Manish Gun
💼 manishgun.vercel.app
📧 mail.cto.manish@gmail.com
🐙 github.com/manishgun
MIT
FAQs
Universal schema-driven validation library for both frontend and backend. Backend-oriented, plugin-friendly, and form-library compatible.
The npm package toku receives a total of 1 weekly downloads. As such, toku popularity was classified as not popular.
We found that toku demonstrated a healthy version release cadence and project activity because the last version was released less than 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
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.