Used in conjunction with redux-form, to create an "engine" capable of rendering any form template in React
- Will only work in a React/Redux app.
- Redux-Form
npm i redux-form --save
npm i form-engine --save
The point of the library is so that you can have an effiecent engine that is capable of rendering any 'template'. This is beneficial for any application that is composed of many many forms. It becomes tiresome and hecktic when trying to code each individual form. What this library offers instead, is the ability to create generic temaplates (JSON) that can be converted into dynamic forms. All the user needs to do is supply the forms. A suggestion for template managment on the backend will be created later but will most likely incorporate mongodb.
- Michael Ramos
This project is licensed under the MIT License - see the LICENSE.md file for details
- erikras for making Redux-Form