Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gothack/forms-mongoose
Automatic Forms generation from Mongoose Models
https://github.com/gothack/forms-mongoose
Last synced: about 1 month ago
JSON representation
Automatic Forms generation from Mongoose Models
- Host: GitHub
- URL: https://github.com/gothack/forms-mongoose
- Owner: GothAck
- Created: 2012-03-06T18:07:58.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2015-09-22T14:21:18.000Z (about 9 years ago)
- Last Synced: 2024-10-11T12:20:25.605Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 108 KB
- Stars: 54
- Watchers: 5
- Forks: 15
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Forms-mongoose allows auto-generation of forms from your Mongoose models
http://search.npmjs.org/#/forms-mongoose
### Example
#### Mongoose
```javascript
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var Email = mongoose.SchemaTypes.Email;
var forms = require('forms-mongoose');var AddressSchema = new Schema({
category: {type: String, required: true, default: 'home', forms: {all:{}}},
lines: {type: String, required: true, forms:{all:{widget:forms.widgets.textarea({rows:3})}}},
city: {type: String, required: true}
});var PersonSchema = new Schema({
email: { type: Email, unique: true, forms: {
all: {
type: 'email'
}
}},
confirmed: { type: Boolean, required: true, default: false },
name: {
first: { type: String, required: true, forms: {
new: {},
edit: {}
}},
last: { type: String, required: true, forms: {
new: {},
edit: {}
}}
},
address: [AddressSchema]
});var PersonModel = mongoose.model('Person', PersonSchema);
```#### Convert Mongoose Model to Forms Object
```javascript
var forms = require('forms-mongoose');var form = forms.create(PersonModel, 'new'); // Creates a new form for a "new" Person
// Use the form object as you would with Forms
console.log (form.toHTML());
// Note toHTML does not include the tags, this is to allow flexibility.//optionally create some static methods in the schema
PersonSchema.statics.createForm = function (extra) {
return forms.create(this, extra);
}PersonSchema.statics.createAddressForm = function (extra) {
return forms.create(this.schema.paths.address, extra);
}
```### Requirements
- [Node.js](http://nodejs.org/)
### Installation
```
npm install forms-mongoose
```