![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@navios/navios-zod
Advanced tools
Navios Zod
is a simple wrapper around zod
library to provide a more convenient way to work with zod
schemas.
Developers forget to use zod
to check the data before using it. This can lead to unexpected errors in the application. Navios Zod
provides a simple way to check the data before using it.
You cannot trust that API will return the data in the format you expect. Navios Zod
provides a simple way to check the data before using it.
npm install --save @navios/navios-zod zod navios
or
yarn add @navios/navios-zod zod navios
import { z } from 'zod'
import { createAPI } from '@navios/navios-zod'
const API = createAPI({
baseURL: 'https://example.com/api/',
})
const GetUserResponseSchema = z.object({
id: z.number(),
name: z.string(),
})
const getUser = API.get('user', GetUserResponseSchema)
Or more complex example with request schema:
import { z } from 'zod'
import { createAPI } from '@navios/navios-zod'
import { GetUsersResponseSchema } from './schemas/GetUsersResponseSchema.js'
const API = createAPI({
baseURL: 'https://example.com/api/',
})
const UpdateUserRequestSchema = z.object({
id: z.number(),
name: z.string(),
})
const updateUser = API.put(
'user/$userId',
UpdateUserRequestSchema,
GetUsersResponseSchema,
)
const users = await updateUser({
urlParams: {
userId: 1,
},
data: {
id: 1,
name: 'John Doe',
},
})
FAQs
Unknown package
The npm package @navios/navios-zod receives a total of 22 weekly downloads. As such, @navios/navios-zod popularity was classified as not popular.
We found that @navios/navios-zod 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
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.