![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@jalik/form-parser
Advanced tools
Parse complex forms with minimum effort.
Parsing forms can be painful, but with this great library you can get all fields from a form, automatically parse values (boolean, number, string, array, object), remove unnecessary spaces from strings and replace empty strings with null, plus you can decide which fields are collected or ignored and even use your own cleaning function.
This library is well tested with more than 100+ unit tests.
First of all, you have to define fields types in the HTML code using the data-type
attribute, so when the parser will get fields values, it will automatically convert them to the given type. The data-type
attribute can have one of the following values : auto
, boolean
, number
or string
.
Note: The auto
value will analyze value and convert it to the best type automatically.
<!-- This will convert "true" to boolean -->
<input name="boolean" type="text" value="true" data-type="boolean">
<!-- This will convert "01" to number -->
<input name="integer" type="text" value="01" data-type="numeric">
<!-- This will convert "09.99" to number -->
<input name="float" type="text" value="09.99" data-type="numeric">
<!-- This will keep "0963" as a string -->
<input name="string" type="text" value="0963" data-type="string">
<!-- This will convert "13.37" to a number using regular expression -->
<input name="anything" type="text" value="13.37" data-type="auto">
<!-- This will convert "false" to a boolean using regular expression -->
<input name="anything_2" type="text" value="false" data-type="auto">
If no data-type
attribute is set, the type
attribute will be used (for input
elements at least), this behavior is active by default with the combination of this options {dynamicTyping: true, smartTyping: true}
in the parseForm()
function.
Let start with a very simple form :
<form id="my-form">
<input type="text" name="username" value="Jalik ">
<input type="email" name="email" value="jalik26@gmail.com">
<input type="number" name="age" value="30" data-type="number">
<input type="checkbox" name="subscribeToNewsletter" value="true" data-type="boolean" checked>
<input type="hidden" name="token" value="aZ7hYkl12mPx">
<button type="submit">Submit</button>
</form>
You can get fields from this form in a single object with minimum effort by using the parseForm()
method.
Note: The form object must be an HTMLFormElement
.
import FormParser from "@jalik/form-parser";
// Get an existing HTML form element
const form = document.getElementById("my-form");
// Parse form values with explicit options, which are optional
const fields = FormParser.parseForm(form, {
// Filters returned fields
cleanFunction(value, field) { return value; },
// Filters returned fields
filterFunction(field) { return true; },
// Don't get buttons
ignoreButtons: true,
// Don't get disabled fields
ignoreDisabled: true,
// Don't get fields with empty string
ignoreEmpty: false,
// Don't get radios or checkboxes that are not checked
ignoreUnchecked: false,
// Replace empty strings with null
nullify: true,
// Parse values to the best type (ex: "001" => 1)
dynamicTyping: true,
// Parse values based on field type (ex: type="number" will parse to number)
smartTyping: true,
// Remove extra spaces
trim: true
});
You will then get the fields
constant looking like this :
{
"username": "Jalik",
"email": "jalik26@gmail.com",
"age": 30,
"subscribeToNewsletter": true,
"token": "aZ7hYkl12mPx"
}
Below is a more complete form example (pay attention to comments, values and attributes).
<form id="my-form">
<!-- Fields with no name will be ignored -->
<input type="text" value="aaa">
<!-- These fields will be parsed to booleans -->
<input name="boolean" type="radio" value="true" data-type="boolean">
<input name="boolean" type="radio" value="false" data-type="boolean" checked>
<input name="hidden_boolean" type="hidden" value="true" data-type="auto">
<!-- These fields will be parsed to numbers -->
<input name="float" type="number" value="09.99">
<input name="hidden_float" type="hidden" value="09.99" data-type="number">
<input name="text_integer" type="text" value="01" data-type="number">
<input name="integer" type="number" value="01">
<input name="range" type="range" value="0118">
<select name="select_number" data-type="auto">
<option value="10"></option>
<option value="20"></option>
<option value="30" selected></option>
</select>
<!-- These fields will be parsed to strings -->
<input name="date" type="date" value="2017-11-14">
<input name="file" type="file" value="file://path/to/file.txt">
<input name="hidden_text" type="hidden" value="shadowed">
<input name="month" type="month" value="2017-11">
<input name="number_text" type="number" value="0123" data-type="string">
<input name="text" type="text" value="Hello">
<input name="url" type="url" value="http://www.github.com/">
<input name="week" type="week" value="2017-W16">
<textarea name="textarea">Hello</textarea>
<!-- Password fields are never parsed and will remain unmodified -->
<input name="password" type="password" value=" s3crEt ">
<!-- These fields will be parsed as array -->
<input name="array[]" type="checkbox" value="A" checked>
<input name="array[]" type="checkbox" value="B" checked>
<select name="select_multiple" data-type="number" multiple>
<option value="10"></option>
<option value="20" selected></option>
<option value="30" selected></option>
</select>
<!-- Disabled fields are ignored by default -->
<input name="disabled_field" value="" disabled>
<!-- Buttons are ignored by default -->
<input name="input_button" type="button" value="Click me">
<input name="input_reset" type="reset" value="Reset">
<input name="input_submit" type="submit" value="Submit">
<button name="button" type="button" value="Click me"></button>
<button name="reset" type="reset" value="Reset"></button>
<button name="submit" type="submit" value="Submit"></button>
</form>
And to get form fields :
import FormParser from "@jalik/form-parser";
// Get an existing HTML form element
const form = document.getElementById("my-form");
// Parse form values using default options
const fields = FormParser.parseForm(form);
The generated fields
constant will look like this :
{
"boolean": false,
"hidden_boolean": true,
"float": 9.99,
"hidden_float": 9.99,
"text_integer": 1,
"integer": 1,
"range": 118,
"select_number": 30,
"date": "2017-11-14",
"file": "file://path/to/file.txt",
"hidden_text": "shadowed",
"month": "2017-11",
"number_text": "0123",
"text": "Hello",
"url": "http://www.github.com/",
"textarea": "Hello",
"password": " s3crEt ",
"array": ["A", "B"],
"select_multiple": [20, 30]
}
To get an array of values from a form, use this syntax :
<form id="my-form">
<!-- This will create an array with checked values -->
<input name="array[]" type="checkbox" value="A">
<input name="array[]" type="checkbox" value="B" checked>
<input name="array[]" type="checkbox" value="C" checked>
<!-- This will create an array with checked values, but it will keep indexes -->
<input name="colors[2]" type="checkbox" value="red" checked>
<input name="colors[1]" type="checkbox" value="blue">
<input name="colors[0]" type="checkbox" value="white" checked>
</form>
To get form fields :
import FormParser from "@jalik/form-parser";
// Get an existing HTML form element
const form = document.getElementById("my-form");
// Parse form values using default options
const fields = FormParser.parseForm(form);
The generated fields
constant will look like this :
{
"array": ["B", "C"],
"colors": ["white", undefined, "red"]
}
To get an object from a form, use this syntax :
<form id="my-form">
<!-- This will create an object with those attributes -->
<input name="phone[code]" type="number" value="689" data-type="string">
<input name="phone[number]" type="number" value="87218910" data-type="string">
</form>
To get fields :
import FormParser from "@jalik/form-parser";
// Get an existing HTML form element
const form = document.getElementById("my-form");
// Parse form values using default options
const fields = FormParser.parseForm(form);
The generated fields
constant will look like this :
{
"phone": {
"code": "689",
"number": "87218910"
}
}
You can even parse a single field using the same logic of dynamic typing and smart typing based on field type or field dataset... This can be useful in a React application with controlled components for example.
import FormParser from "@jalik/form-parser";
// Age field is an input of type number
const ageField = document.getElementById("age-field");
// Get the age as number (ex: age = 30)
const age = FormParser.parseField(ageField, {
dynamicTyping: true,
nullify: true,
smartTyping: true,
trim: true,
});
// Colors is a select allowing multiple values to be selected
const colorsSelect = document.getElementById("colors-select");
// Get the colors as array (ex: colors = ['blue', 'green'])
const colors = FormParser.parseField(colorsSelect, {
dynamicTyping: true,
nullify: true,
smartTyping: true,
trim: true,
});
You can construct complex and deep objects using a mix of arrays and object attributes. As far as I know there is no depth limit.
<form id="my-form">
<input name="phones[0][code]" type="number" value="689" data-type="string">
<input name="phones[0][number]" type="number" value="87218910" data-type="string">
<input name="phones[1][code]" type="number" value="689" data-type="string">
<input name="phones[1][number]" type="number" value="87218910" data-type="string">
<!-- A very deep field value -->
<input name="deep_1[][deep_2][0][][deep_3]" value="DEEP">
</form>
To get fields :
import FormParser from "@jalik/form-parser";
// Get an existing HTML form element
const form = document.getElementById("my-form");
// Parse form values using default options
const fields = FormParser.parseForm(form);
The generated fields
constant will look like this :
{
"phones": [
{
"code": "689",
"number": "87218910"
},
{
"code": "689",
"number": "87218910"
}
],
"deep_1": [
{
"deep_2": [
[
{"deep_3": "DEEP"}
]
]
}
]
}
You can get only the fields you want with filterFunction(field)
option in the parseForm()
method. The filter function will be called with all fields and must return true
to return the field.
import FormParser from "@jalik/form-parser";
// Get an existing HTML form element
const form = document.getElementById("my-form");
// Parse form values using default options
const fields = FormParser.parseForm(form, {
filterFunction(field) {
// returns only text fields
return field.type === "text";
}
});
All string values can be cleaned using the cleanFunction(value, field)
option in the parseForm()
method. The clean function will be called with any value that is a string of length > 0.
import FormParser from "@jalik/form-parser";
// Get an existing HTML form element
const form = document.getElementById("my-form");
// Parse form values using default options
const fields = FormParser.parseForm(form, {
cleanFunction(value, field) {
// Apply uppercase to lastName field
if (field.name === "lastName" || /name/gi.test(field.name)) {
value = value.toUpperCase();
}
// Remove HTML code from all fields
value = value.replace(/<\/?[^>]+>/gm, "");
return value;
}
});
History of releases is in the changelog.
The code is released under the MIT License.
If you find this lib useful and would like to support my work, donations are welcome :)
v1.1.1 (2018-06-07)
FAQs
A utility to parse complex forms with minimum effort.
The npm package @jalik/form-parser receives a total of 30 weekly downloads. As such, @jalik/form-parser popularity was classified as not popular.
We found that @jalik/form-parser demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.