VestDeclarative validations framework inspired by unit testing libraries Vest is a form validations framework that looks and feels like a unit testing framework. It allows you to express your validation logic in a simple and readable way that's also easy to maintain in the long run. test("username", "Username is required", () => { enforce(data.username).isNotBlank(); }); test("username", "Username
