{"id":26459454,"url":"https://github.com/pavlyukvadim/react-live-form","last_synced_at":"2026-04-18T06:02:01.418Z","repository":{"id":25489249,"uuid":"104142073","full_name":"PavlyukVadim/react-live-form","owner":"PavlyukVadim","description":"Created with a purpose to take control of your dynamic forms by the library","archived":false,"fork":false,"pushed_at":"2022-12-08T17:00:33.000Z","size":3987,"stargazers_count":1,"open_issues_count":27,"forks_count":0,"subscribers_count":1,"default_branch":"source","last_synced_at":"2025-03-18T13:09:27.737Z","etag":null,"topics":["demo","ecmascript","form-builder","javascript","jest","observable","react","react-form-builder"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/react-live-form","language":"JavaScript","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/PavlyukVadim.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-09-19T23:53:48.000Z","updated_at":"2019-06-12T22:00:28.000Z","dependencies_parsed_at":"2023-01-14T03:00:11.983Z","dependency_job_id":null,"html_url":"https://github.com/PavlyukVadim/react-live-form","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PavlyukVadim%2Freact-live-form","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PavlyukVadim%2Freact-live-form/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PavlyukVadim%2Freact-live-form/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PavlyukVadim%2Freact-live-form/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PavlyukVadim","download_url":"https://codeload.github.com/PavlyukVadim/react-live-form/tar.gz/refs/heads/source","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244333022,"owners_count":20436123,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["demo","ecmascript","form-builder","javascript","jest","observable","react","react-form-builder"],"created_at":"2025-03-19T01:15:59.829Z","updated_at":"2026-04-18T06:02:01.336Z","avatar_url":"https://github.com/PavlyukVadim.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-live-form\n[![Build Status](https://travis-ci.org/PavlyukVadim/app.github.io.svg?branch=source)](https://travis-ci.org/PavlyukVadim/dynamic-forms) [![Coverage Status](https://coveralls.io/repos/github/PavlyukVadim/dynamic-forms/badge.svg?branch=source)](https://coveralls.io/github/PavlyukVadim/dynamic-forms?branch=source)\n\n`react-live-form` is a library for building a live forms (forms with dynamic fields) based on [React](https://facebook.github.io/react/).\n\n#### [Demo](https://pavlyukvadim.github.io/react-live-form/) | [Source](https://github.com/PavlyukVadim/dynamic-forms)\n\n## Setup\n\n* Install with `npm` or `yarn`:\n```sh\nnpm i react-live-form\n# OR\nyarn add react-live-form\n```\n\n* Use in your project:\n\n```jsx\nimport React from 'react';\nimport LiveForm from 'react-live-form';\n\nconst formConfig = {\n  formName: 'firstForm',\n  fields: [\n    {\n      name: 'a',\n      fieldType: 'input',\n      props: {\n        title: 'field a',\n      },\n      state: {\n        value: {\n          defaultValue: 5,\n        },\n      },\n    },\n    {\n      name: 'b',\n      fieldType: 'input',\n      props: {\n        title: 'field b',\n      },\n    },\n    {\n      name: 'c',\n      fieldType: 'input',\n      props: {\n        title: 'field c',\n      },\n      state: {\n        value: {\n          defaultValue: 0,\n          valueExpr: 'a + b',\n        },\n      },\n    },\n    {\n      name: 'd',\n      fieldType: 'input',\n      props: {\n        title: 'field d',\n      },\n      state: {\n        value: {\n          defaultValue: 0,\n          valueExpr: 'c * 2',\n        },\n        display: {\n          defaultValue: false,\n          valueExpr: 'a \u003e 10',\n        },\n        disabled: {\n          defaultValue: false,\n          valueExpr: 'a \u003e 34',\n        },\n      },\n    },\n  ]\n};\n\nconst MyComponent = () =\u003e\n  \u003cLiveForm formConfig={formConfig} /\u003e;\n```\n\n## Tips\n\n* Use [demo pages](https://pavlyukvadim.github.io/react-live-form/) to find all available components with examples.\n\n## License\nThis project is offered under [MIT License](https://github.com/PavlyukVadim/dynamic-forms/blob/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpavlyukvadim%2Freact-live-form","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpavlyukvadim%2Freact-live-form","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpavlyukvadim%2Freact-live-form/lists"}