zod-neverthrow
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

zod-neverthrow

npm version npm downloads

A lightweight TypeScript utility that integrates Zod schema validation with the Result type from neverthrow for streamlined robust error handling.

Installation

npm install zod-neverthrow zod neverthrow
# or
pnpm add zod-neverthrow zod neverthrow

Dependencies

This package requires the following peer dependencies:

Usage

import { z } from 'zod';
import 'zod-neverthrow';

const UserSchema = z.object({
	name: z.string(),
	age: z.number(),
	enabled: z.boolean(),
});

// Result<{ name: string; age: number; enabled: boolean; }, z.ZodError<any>>
const result = UserSchema.neverthrowParse({
	name: 'John Doe',
	age: 30,
	enabled: true,
});

result.match(
	(user) => console.log('User processed successfully:', user),
	(error) => console.error('Invalid user data:', error.errors),
);

License

MIT License

Readme

Keywords

none

Package Sidebar

Install

npm i zod-neverthrow

Weekly Downloads

8

Version

1.0.0

License

MIT

Unpacked Size

5 kB

Total Files

7

Last publish

Collaborators

  • arumi-s