
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
form-input-serialize
Advanced tools
form-input-serialize
provides helper functions to retrive form props and form values
inputPropsLookup(fieldsProps, fieldName)
Argument | Type | Example |
---|---|---|
fieldsProps | object | {name: {type: 'text'}, email: {type: 'email'}} |
fieldName | string | name , email[0] , email[1] |
####returns
object
: props, e.g. {type: 'text'}
####e.g.
const fieldsProps = {
name: { type: 'text' },
age_group: {
type: 'select',
size: 4,
options: []
}
address: {
type: 'nested',
fields: {
street: {
type: 'text'
}
}
}
};
const fieldName = 'address[0][street]';
const props = inputPropsLookup(fieldsProps, fieldName);
// <input name={fieldName} {...props} />
formInputsSerialize(form)
formInputsSerialize(form)
Argument | Type | Example |
---|---|---|
form | DOMNode | form element |
####returns
object
. serialized, e.g. {type: 'text'}
####e.g.
// <form ref={f => this.form =f}><input name="message" value="hello"/></form>
const values = formInputsSerialize(this.form);
// { message: 'hello' }
inputValueLookup(values, fieldName)
Argument | Type | Example |
---|---|---|
values | object | {address: [ {zip: '55555'} ]} |
fieldName | string | address[0][zip] |
####returns
any
. input value, e.g. {type: 'text'}
####e.g.
const values = {
name: 'Ali',
age_group: '31-40'
address: {
0: {
street: '13 Calle 49a'
}
};
const fieldName = 'address[0][street]';
const value = inputValueLookup(values, fieldName);
// <input name={fieldName} value={value} />
FAQs
Serialize/Deserialize form input, and lookup
The npm package form-input-serialize receives a total of 6 weekly downloads. As such, form-input-serialize popularity was classified as not popular.
We found that form-input-serialize demonstrated a not healthy version release cadence and project activity because the last version was released 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.