Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's a good node.js / mongoose form builder?

From using other frameworks I've gotten used to not building out and mapping forms to db objects manually. Since using node.js and mongoose. I'm looking for a form builder that allows the following:

  1. automatically maps mongoose objects to form fields
  2. handles both 'new' and 'update' use cases
  3. allows class injection around form fields for styling
  4. includes validation
  5. allows one to add custom fields

Does anyone know of any such form builders for node.js, express, mongoose?

like image 849
Kunle Avatar asked Sep 18 '25 13:09

Kunle


1 Answers

I haven't used it, or looked at it in depth, but https://github.com/oJshua/mongoose-forms looks like it may be of interest.

like image 199
shelman Avatar answered Sep 21 '25 04:09

shelman