
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
fields-transformer
Advanced tools
Typically transforms key value pairs into some other key value pairs. It is intended to work with the results from multipart handlers like formidable or multer. Not the transformer from the transformer movie.
See documentation below.
Use the package manager npm to install field-transformer.
npm install field-transformer
const transformer = require('jwt-linker');
Use the make method for transforming an object with keys with values of type array of objects
transformer.make({
bread: [{path: 'a'}, {path: 'b'}, {path: '...n'}],
butter: [{path: 'a'}, {path: 'b'}, {path: '...n'}],
ginger: [{path: 'a'}, {path: 'b'}, {path: '...n'}]
});
// Typically, used with transformer.attach
Use to transform an array of paths into an array of filePaths like so
const {filePaths} = transformer.makeSingle({
files: [{path: 'a'}, {path: 'b'}, {path: '...n'}]}
);
console.log(filePaths); // ['a', 'b', '..n']
Use to transform keys of values of type object with path as values into an array of filePaths like so
const {filePaths} = transformer.objFieldTransformer({
bread: {path: 'a'},
butter: {path: 'a'},
ginger: {path: 'a'},
});
console.log(filePaths); // ['a', 'a', 'a']
Use to transform keys of values of the type array into an array of filePaths like so
const someObject = {
bread: [{path: 'a'}, {path: 'b'}, {path: '...n'}],
butter: [{path: 'a'}, {path: 'b'}, {path: '...n'}],
ginger: [{path: 'a'}, {path: 'b'}, {path: '...n'}]
};
const {filePaths} = transformer.objArrayTransformer(someObject);
console.log(filePaths); // ['a', 'b', '..n', 'a', 'b', '..n', ...]
Use to attach elements of the filePaths to the doc. Receives two arguments doc and fields.
Fields is either an array of strings or just a string. Attach picks the values from the filePaths in transformer.make returns a promise, deal as suites you.
const docModified = await transformer.attach({}, ['storyImages', 'otherImages']);
or const docModified = await transformer.attach({}, 'profileImage');
console.log({docModified}); // {docModified: {storyImages: '...', otherImages: '...'}}
or console.log({docModified}); // {docModified: {profileImage: '...'}}
Please visit the Github repo. Submissions, issues... are welcome
FAQs
transforms fields
We found that fields-transformer 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.