https://github.com/maxtermax/ui-builder
This is a implementation of the 'Builder' pattern, implementing a dynamic contact form.
https://github.com/maxtermax/ui-builder
Last synced: about 1 month ago
JSON representation
This is a implementation of the 'Builder' pattern, implementing a dynamic contact form.
- Host: GitHub
- URL: https://github.com/maxtermax/ui-builder
- Owner: Maxtermax
- Created: 2021-01-11T03:05:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-11T03:20:27.000Z (over 5 years ago)
- Last Synced: 2025-12-19T15:21:08.196Z (6 months ago)
- Language: TypeScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ui-builder
This is a implementation of the 'Builder' pattern, implementing a dynamic contact form.
## Requeriments
- nodejs >= 14
- typescrypt = 4.1.3
## Usage
In order to
`npm run start`
output:
Contact form object with fields: name, email.
```
{ name:
Input {
name: 'name',
value: '',
type: 'text',
label: '',
required: false,
id: '',
disabled: false,
dependOf: '' },
email:
Input {
name: 'email',
value: '',
type: 'email',
label: '',
required: false,
id: '',
disabled: false,
dependOf: '' } }
```