
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
append-field
Advanced tools
A [W3C HTML JSON forms spec](http://www.w3.org/TR/html-json-forms/) compliant field appender (for lack of a better name). Useful for people implementing `application/x-www-form-urlencoded` and `multipart/form-data` parsers.
append-fieldA W3C HTML JSON forms spec compliant
field appender (for lack of a better name). Useful for people implementing
application/x-www-form-urlencoded and multipart/form-data parsers.
It works best on objects created with Object.create(null). Otherwise it might
conflict with variables from the prototype (e.g. hasOwnProperty).
npm install --save append-field
import appendField from 'append-field'
const obj = Object.create(null)
appendField(obj, 'pets[0][species]', 'Dahut')
appendField(obj, 'pets[0][name]', 'Hypatia')
appendField(obj, 'pets[1][species]', 'Felis Stultus')
appendField(obj, 'pets[1][name]', 'Billie')
console.log(obj)
{ pets:
[ { species: 'Dahut', name: 'Hypatia' },
{ species: 'Felis Stultus', name: 'Billie' } ] }
appendField(store, key, value)store (object, required)key (string, required)value (any, required)Adds the field named key with the value value to the object store.
MIT
The form-data package is similar to append-field in that it is used to create and manipulate FormData objects. However, form-data provides a broader set of functionalities for handling FormData, including the ability to directly append files and streams, making it more suitable for file uploads.
Formidable is another package that deals with form data but from a different angle. It is primarily focused on parsing incoming form data, especially file uploads. While append-field is about appending data to FormData, formidable excels in extracting and processing data from incoming forms.
FAQs
A [W3C HTML JSON forms spec](http://www.w3.org/TR/html-json-forms/) compliant field appender (for lack of a better name). Useful for people implementing `application/x-www-form-urlencoded` and `multipart/form-data` parsers.
The npm package append-field receives a total of 7,309,918 weekly downloads. As such, append-field popularity was classified as popular.
We found that append-field 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
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.