How to build Serverless Applications with
http://bit.ly/1ROeEBy


The next generation of webforms.
http://bit.ly/1rwRpqMUses a JSON schema to define a form.
{
components: [
{
type: 'textfield',
label: 'First Name',
key: 'firstName',
placeholder: 'Enter your first name.',
defaultValue: 'Travis',
validate: {
maxLength: '',
minLength: '',
required:true
}
},
{
type: 'textfield',
label: 'Last Name',
key: 'lastName',
placeholder: 'Enter your last name.',
defaultValue: 'Tidwell',
validate: {
maxLength: '',
minLength: '',
required: true
}
},
{
type: 'button',
label: 'Submit',
key: 'submit',
action: 'submit'
}
]
}
The schema is then rendered dynamically using JavaScript
https://jsfiddle.net/travistidwell/3ox713fo/5/Ok, this is great... but now I have to build that JSON schema, which is a pain.- Everyone

Form Building and Rendering Demo
JSON is ubiquitous
Deploy your forms anywhere
<formio src="'https://myproject.form.io/myform'"></formio>
Offline Form Rendering & Data Collecting

A platform for
JSON Powered Forms + Serverless Applications
Automatic REST API
Form Actions
