forro

0.3.1 • Public • Published

forro

Encapsulate form validation definitions in objects, using the excellent validator module to handle the actual validation and casting.

I missed the form definition pattern Python has adapted with libraries like web.py and wtforms. Being able to declare form schema's in one place, and being able to trust in your controller code that what you're dealing with has already been validate and cast the way you want is pretty great. forro adds these niceties to Javascript land.

Build Status

Example

var express = require("express"),
    app = express(),
    forro = require('forro'),
    StringField = forro.StringField,
    BooleanField = forro.BooleanField,
    DateField = forro.DateField;

// ... some code

var AuthForm = forro({
    'username': StringField.required().max(32),
    'password': StringField.required().length(4, 25),
    'remember_me': BooleanField
});


app.post("/login", AuthForm.middleware(), function(req, res){
    // Middleware already validated for us
    // and sent back a 400 error if validation failed.
    // now we can just call out authentication function with
    // req.form.val('username') and req.form.val('password')
});


 var BookmarkForm = forro({
    'url': StringField.required().url(),
    'tags': StringField.required().use(function tokenize(str){
        return str.split(',').map(function(s){
            return s.trim().toLowerCase();
        }).filter(function(s){
            return s.length > 0;
        });
    }),
    'created_on': DateField.default(DateField.now)
});

app.post("/bookmark", BookmarkForm.middleware(), function(req, res){
    saveBookmark(req.form.val('url'), req.form.val('tags'), req.form.val('created_on'), function(err, bookmark){
        if(err) return next(err);
        res.send(bookmark);
    });
});

// ... some more code

Install

 npm install forro

Testing

git clone
npm install
mocha

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i forro

Weekly Downloads

3

Version

0.3.1

License

MIT

Last publish

Collaborators

  • imlucas