← Back to list

nuxt-errors
by leeovery
⭐ 1🍴 0📅 Jan 20, 2026
SKILL.md
name: nuxt-errors description: Error handling with error classes, handlers, and interceptors. Use when handling API errors, displaying validation errors, configuring error handlers, or implementing error interceptors.
Nuxt Error Handling
Centralized error handling with typed error classes and configurable handlers.
Core Concepts
errors.md - Error classes, handlers, interceptors
Error Classes
import { ValidationError } from '#layers/base/app/errors/validation-error'
import { ConflictError } from '#layers/base/app/errors/conflict-error'
import { TooManyRequestsError } from '#layers/base/app/errors/too-many-requests-error'
// ValidationError (422)
if (error instanceof ValidationError) {
error.errors // Record<string, string[]>
error.message // string
error.mapToFormErrors() // FormError[]
}
Error Handlers Configuration
// app.config.ts
export default defineAppConfig({
errorHandlers: {
401: async ({ flash }) => navigateTo('/auth/login'),
422: async ({ response }) => Promise.reject(new ValidationError(response)),
500: async ({ flash }) => flash.error('Server error'),
},
})
Action Error Handling
const { handleActionError } = useHandleActionError()
try {
await createPost(data)
} catch (error) {
throw handleActionError(error, {
entity: 'post',
operation: 'create',
})
}
// Shows: "Failed to create post. [error details]"
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon