Form-maker
Generates a form and state machine in JSON format based on a given yaml.
Tests
$ npm test
Usage
const formMaker = require('form-maker')
formMaker (
{
namespace: 'test', // the namespace of the model you want to save form data to
formName: 'peopleForm', // name of the form
modelName: 'peopleModel', // name of the model that you want to save form data to
yamlPath: 'path/to/yaml/file'
},
function (err, result) {
// result.form - holds the generated form object
// result.stateMachine - holds the generated state machine object
}
)