Utilities for parsing form data and handling validation errors with bracket notation support.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add ali-master/skills --skill orpc-form-data --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Orpc Form Data?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/ali-master-orpc-form-data)More formats (shields.io, HTML) on the badges page.
---
name: oRPC Form Data Helpers
description: Utilities for parsing form data and handling validation errors with bracket notation support.
license: MIT
metadata:
author: Ali Torki
homepage: https://github.com/ali-master
version: "1.0.0"
---
# Form Data Helpers
Form data helpers provide utilities for parsing HTML form data and extracting validation error messages, with full support for [bracket notation](/docs/openapi/bracket-notation).
## `parseFormData`
```ts
import { parseFormData } from '@orpc/openapi-client/helpers'
const form = new FormData()
form.append('name', 'John')
form.append('user[email]', 'john@example.com')
form.append('user[hobbies][]', 'reading')
form.append('user[hobbies][]', 'gaming')
const parsed = parseFormData(form)
// {
// name: 'John',
// user: {
// email: 'john@example.com',
// hobbies: ['reading', 'gaming']
// }
// }
```
## `getIssueMessage`
```ts
import { getIssueMessage } from '@orpc/openapi-client/helpers'
const error = {
data: {
issues: [
{ path: ['user', 'email'], message: 'Invalid email format' }
]
}
}
const emailError = getIssueMessage(error, 'user[email]')
// 'Invalid email format'
const tagError = getIssueMessage(error, 'user[tags][]')
const anyError = getIssueMessage('anything', 'path')
// undefined if cannot find issue
```
> `getIssueMessage` requires standard schema issue format with issues in `data.issues`.
## Usage Example
```tsx
import { getIssueMessage, parseFormData } from '@orpc/openapi-client/helpers'
export function ContactForm() {
const [error, setError] = useState()
const handleSubmit = (form: FormData) => {
try {
const data = parseFormData(form)
} catch (error) {
setError(error)
}
}
return (
<form action={handleSubmit}>
<input name="user[name]" type="text" />
<span>{getIssueMessage(error, 'user[name]')}</span>
<input name="user[emails][]" type="email" />
<span>{getIssueMessage(error, 'user[emails][]')}</span>
<button type="submit">Submit</button>
</form>
)
}
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!