{"id":50787039,"url":"https://github.com/devitools/ybyra","last_synced_at":"2026-06-12T08:33:05.906Z","repository":{"id":337272883,"uuid":"1152937390","full_name":"devitools/ybyra","owner":"devitools","description":"Schema-driven form system for React and React Native","archived":false,"fork":false,"pushed_at":"2026-03-04T20:58:32.000Z","size":1893,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-05T02:40:55.543Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://devitools.github.io/ybyra/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devitools.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-08T16:58:32.000Z","updated_at":"2026-03-04T20:58:40.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/devitools/ybyra","commit_stats":null,"previous_names":["devitools/anhanga"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devitools/ybyra","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devitools%2Fybyra","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devitools%2Fybyra/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devitools%2Fybyra/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devitools%2Fybyra/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devitools","download_url":"https://codeload.github.com/devitools/ybyra/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devitools%2Fybyra/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34236551,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-12T02:00:06.859Z","response_time":109,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-12T08:33:04.900Z","updated_at":"2026-06-12T08:33:05.893Z","avatar_url":"https://github.com/devitools.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ybyra\n\n**Schema-driven forms for React, Vue, and Svelte.** Define your fields once, get type-safe forms, tables, validation, events, and actions — all from a single source of truth.\n\n```typescript\nimport { text, Text, date, toggle, group, action, Position, Scope } from '@ybyra/core'\n\nconst PersonSchema = schema.create('person', {\n  groups: {\n    basic: group(),\n    address: group(),\n  },\n  fields: {\n    name: text().width(100).required().column().group('basic'),\n    email: text().kind(Text.Email).width(60).required().column().group('basic'),\n    phone: text().kind(Text.Phone).width(40).group('basic'),\n    birthDate: date().width(30).group('basic'),\n    active: toggle().width(20).default(true).column().group('basic'),\n    street: text().kind(Text.Street).width(60).group('address'),\n    city: text().kind(Text.City).width(40).group('address'),\n  },\n  actions: {\n    custom: action().icon(Icon.Send).warning().positions(Position.footer).scopes(Scope.add),\n  },\n})\n```\n\nNo labels in code. No boilerplate. Full TypeScript inference.\n\n## Documentation\n\nVisit the [full documentation](https://devitools.github.io/ybyra/) for guides, API reference, and examples.\n\n- [Getting Started](https://devitools.github.io/ybyra/guide/introduction)\n- [Installation](https://devitools.github.io/ybyra/guide/installation)\n- [Quick Start](https://devitools.github.io/ybyra/guide/quick-start)\n- [API Reference](https://devitools.github.io/ybyra/api/core)\n\n## Packages\n\n| Package | Description |\n|---------|-------------|\n| `@ybyra/core` | Schema definition, field types, actions, groups, type system |\n| `@ybyra/react` | `useDataForm` / `useDataTable` hooks, renderer registry, validation |\n| `@ybyra/vue` | `useDataForm` / `useDataTable` composables for Vue |\n| `@ybyra/svelte` | `useDataForm` / `useDataTable` stores for Svelte |\n| `@ybyra/react-web` | Ready-made field renderers for React web |\n| `@ybyra/react-native` | Ready-made field renderers for React Native |\n| `@ybyra/vue-quasar` | Ready-made field renderers for Vue + Quasar |\n| `@ybyra/sveltekit` | Ready-made field renderers for SvelteKit |\n| `@ybyra/persistence` | Local and web persistence drivers |\n\n## Installation\n\n```bash\npnpm add @ybyra/core @ybyra/react\n```\n\n## Development\n\n```bash\npnpm install\npnpm build          # build all packages\npnpm test           # run all tests\npnpm docs:dev       # documentation dev server\n```\n\n## Publishing\n\nThis project uses [changesets](https://github.com/changesets/changesets) for versioning and publishing.\n\n### Creating a changeset\n\nAfter making changes, run:\n\n```bash\npnpm changeset\n```\n\nFollow the prompts to select which packages changed and the semver bump type (patch/minor/major).\n\n### Versioning and releasing\n\n```bash\n# Apply version bumps and generate changelogs\npnpm version-packages\n\n# Build and publish to npm\npnpm release\n```\n\n\u003e **Note:** You must be logged in to npm (`npm login`) and be a member of the `@ybyra` organization.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevitools%2Fybyra","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevitools%2Fybyra","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevitools%2Fybyra/lists"}