![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@standard-schema/utils
Advanced tools
There are two common tasks that third-party libraries perform after validation fails. The first is to flatten the issues by creating a dot path to more easily associate the issues with the input data. This is commonly used in form libraries. The second is to throw an error that contains all the issue information. To simplify both tasks, Standard Schema also ships a utils package that provides a getDotPath
function and a SchemaError
class.
npm install @standard-schema/utils # npm
yarn add @standard-schema/utils # yarn
pnpm add @standard-schema/utils # pnpm
bun add @standard-schema/utils # bun
To generate a dot path, simply pass an issue to the getDotPath
function. If the issue does not contain a path or the path contains a key that is not of type string
or number
, the function returns null
.
import type { StandardSchema } from "@standard-schema/spec";
import { getDotPath } from "@standard-schema/utils";
async function getFormErrors(schema: StandardSchema, data: unknown) {
const result = await schema["~validate"]({ value: data });
const formErrors: string[] = [];
const fieldErrors: Record<string, string[]> = {};
if (result.issues) {
for (const issue of result.issues) {
const dotPath = getDotPath(issue);
if (dotPath) {
if (fieldErrors[dotPath]) {
fieldErrors[dotPath].push(issue.message);
} else {
fieldErrors[dotPath] = [issue.message];
}
} else {
formErrors.push(issue.message);
}
}
}
return { formErrors, fieldErrors };
}
To throw an error that contains all issue information, simply pass the issues of the failed schema validation to the SchemaError
class. The SchemaError
class extends the Error
class with an issues
property that contains all the issues.
import type { StandardSchema } from "@standard-schema/spec";
import { SchemaError } from "@standard-schema/utils";
async function validateInput(schema: StandardSchema, data: unknown) {
const result = await schema["~validate"]({ value: data });
if (result.issues) {
throw new SchemaError(result.issues);
}
return result.value;
}
FAQs
The official runtime utils for Standard Schema
The npm package @standard-schema/utils receives a total of 0 weekly downloads. As such, @standard-schema/utils popularity was classified as not popular.
We found that @standard-schema/utils demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.