forms
forms copied to clipboard
An easy way to create, parse and validate forms in node.js
I think there are enough changes to merit a new release to be cut?
npm install missing the chunk of code below: ``` var datetimeLocalWidget = input('datetime-local'); exports.datetimeLocal = function (options) { var opt = options || {}; var w = datetimeLocalWidget(opt); w.formatValue =...
I am trying to get a simple single checkbox to work. I can't get the `value` to work. The two closest approaches are have found are *array/multipleCheckbox* and *string/checkbox*. However,...
Hi, seems that I didn't manage to update pull request #145 . So here's a new /rebased version of it. Sorry for the delay. Cheers
Fixes #186 by checking if it's a sensible value before it casts it, so that non-sensible values won't be casted to eg. a string
I'm currently trying to use this library for isomporphic form validation/rendering. However, this lifted my (uncompressed) JS size from ~700kb to 3.1mb. After removing `formidable`, `async` and `qs` as dependencies...
I've read the following issue: #166 and I'm wondering how we can enforce type validation (using is module or node-validator). If you submit an object to a string field, it...
Set the third value in choices to TRUE to disable an item on the list.
New option that gives posibility to validate form by external application eg by http request to backend server.
Hi, Thanks for this library! I use [koa@2](https://github.com/koajs/koa/tree/2.1.0) that supports async/await syntax. My use case is: ```js const forms = require('forms') let myForm = forms.create({ username: fields.string({ required: true })...