{"id":13881083,"url":"https://github.com/malikzh/reforms","last_synced_at":"2026-04-02T01:29:05.168Z","repository":{"id":37964682,"uuid":"340043548","full_name":"malikzh/reforms","owner":"malikzh","description":"WIP: Vue 3 and Bootstrap 5 forms and cards generator","archived":false,"fork":false,"pushed_at":"2023-01-05T12:07:13.000Z","size":1359,"stargazers_count":16,"open_issues_count":14,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-02T10:56:47.419Z","etag":null,"topics":["bootstrap","bootstrap5","form","generator","input","javascript","js","schema","vue","vue3"],"latest_commit_sha":null,"homepage":"","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/malikzh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-02-18T12:29:44.000Z","updated_at":"2024-12-08T17:16:23.000Z","dependencies_parsed_at":"2023-02-04T04:20:46.128Z","dependency_job_id":null,"html_url":"https://github.com/malikzh/reforms","commit_stats":null,"previous_names":["empla/reforms"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/malikzh/reforms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malikzh%2Freforms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malikzh%2Freforms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malikzh%2Freforms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malikzh%2Freforms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/malikzh","download_url":"https://codeload.github.com/malikzh/reforms/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malikzh%2Freforms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31293899,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T01:05:07.454Z","status":"ssl_error","status_checked_at":"2026-04-02T00:56:46.496Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["bootstrap","bootstrap5","form","generator","input","javascript","js","schema","vue","vue3"],"created_at":"2024-08-06T08:03:59.382Z","updated_at":"2026-04-02T01:29:05.141Z","avatar_url":"https://github.com/malikzh.png","language":"Vue","funding_links":[],"categories":["Vue"],"sub_categories":[],"readme":"\n\u003cdiv align=\"center\"\u003e\n\u003cimg src=\"./content/reforms.png\" width=\"200\" alt=\"Reforms.js\"\u003e\n\n# Reforms.js\n\nVue 3 and Bootstrap 5 forms and cards generator\n\n---\n\n[![Build](https://github.com/empla/reforms/actions/workflows/build.yml/badge.svg)](https://github.com/empla/reforms/actions/workflows/build.yml)\n![GitHub](https://img.shields.io/github/license/empla/reforms)\n![npm](https://img.shields.io/npm/v/@empla/reforms)\n![npm](https://img.shields.io/npm/dt/@empla/reforms)\n![GitHub Repo stars](https://img.shields.io/github/stars/empla/reforms?style=social)\n\n---\n\n\u003c/div\u003e\n\n## Features\n\n- Info cards\n- Forms\n- 15+ inputs types and output types\n- Forms schemas\n- Plugin system\n- Internationalization\n- Input \u0026 Output groups\n- Form validation\n- Server side validation\n- Multiple and sortable fields\n\n# Demo\n\nYou can [try it online](https://codesandbox.io/s/reforms-demo-jbpyv) \n\n\n## Installation\n\n```sh\n# Install before\nnpm i vue@next bootstrap@next\n\n# Install reforms\nnpm i @empla/reforms\n```\n\n## Example\n\n### Example with markup\n\n```vue\n\u003creforms-form\u003e\n  \u003creforms-input type=\"string\" name=\"firstname\" label=\"First Name\" validation=\"required|string\" /\u003e\n  \u003creforms-input type=\"string\" name=\"lastname\" label=\"Last Name\" validation=\"required|string\" /\u003e\n  \u003creforms-input type=\"html\" name=\"notes\" label=\"Notes\" /\u003e\n  \u003cbutton type=\"submit\" class=\"btn btn-success\"\u003e\n    Submit\n  \u003c/button\u003e\n\u003c/reforms-form\u003e\n```\n\nIt creates form:\n\n![Form](content/form1.png)\n\n### Example with schema\n\nYou can create form with schema:\n\n```js\nconst schema = {\n    firstname: {\n      type: 'string',\n      attrs: {\n        validation: 'required',\n        label: 'First name'\n      }\n    },\n    lastname: {\n      type: 'string',\n      attrs: {\n        validation: 'required',\n        label: 'Last name'\n      }\n    },\n    notes: {\n      type: 'html',\n      attrs: {\n        label: 'Notes',\n      }\n    }\n};\n```\n\nAnd pass it to form:\n\n```vue\n\u003creforms-form :schema=\"schema\"\u003e\n  \u003cbutton type=\"submit\" class=\"btn btn-success\"\u003e\n    Submit\n  \u003c/button\u003e\n\u003c/reforms-form\u003e\n```\n\n## Documentation\n\nhttps://reforms.js.org/documentation/\n\n## License\n\n[MIT](LICENSE)\n\n---\n\nCopyright \u0026copy; 2021 EMPLA GROUP, LLP\n\nMade with ❤️ \nby [Malik Zharykov](https://github.com/malikzh)️\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmalikzh%2Freforms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmalikzh%2Freforms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmalikzh%2Freforms/lists"}