Nuxt ZodI18n
A Nuxt Module for localizing zod error messages.
Check the playground for usage doc and test will come later
Features
- This library depends on @nuxtjs/i18n .
- Provide a Global error map for zod see Zod ERROR_HANDLING
- Translation for zod errors based on ZodIssueCode
- A way to translate custom errors
Quick Setup
- Add
nuxt-zod-i18n
dependency to your project
# Using pnpm
pnpm add -D nuxt-zod-i18n
# Using yarn
yarn add --dev nuxt-zod-i18n
# Using npm
npm install --save-dev nuxt-zod-i18n
- Add
nuxt-zod-i18n
to themodules
section ofnuxt.config.ts
before@nuxtjs/i18n
module
export default defineNuxtConfig({
modules: ['nuxt-zod-i18n', '@nuxtjs/i18n']
})
That's it! You can now use Nuxt ZodI18n in your Nuxt app ✨
Development
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release