
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
Reshaper is a JavaScript library which can automatically restructure JavaScript objects to match a provided schema. It also provides users with some manual control, by way of a 'hint' system.
To see some interactive examples, check out this Kajero notebook.
npm install reshaper
reshaper(data, schema, [hint])data: The JavaScript data structure to be reshaped.schema: The structure we want our reshaped data to match.hint: (Optional) The name of an object key, given as a 'hint'. Keys matching this hint will be preferred. An array of keys can also be provided if desired.var reshaper = require('reshaper');
var peopleData = [
{
name: 'Joel',
info: {
age: 22,
height: 1.9,
middleName: 'Robert',
lastName: 'Auterson'
}
},
{
name: 'Jake',
info: {
age: 24,
height: 1.85,
middleName: 'Wild',
lastName: 'Hall'
}
}
];
var schema = ['String'];
reshaper(peopleData, schema);
// => ['Joel', 'Jake']
// We can give a 'hint', to say lastName is what we want.
reshaper(peopleData, schema, 'lastName');
// => ['Auterson', 'Hall']
// Object keys get used as hints
var schema = {
age: ['Number'],
height: ['Number']
};
reshaper(peopleData, schema);
/* =>
{
age: [22, 24],
height: [1.9, 1.85]
}
*/
FAQs
Reshape JavaScript data structures to match a schema
The npm package reshaper receives a total of 121 weekly downloads. As such, reshaper popularity was classified as not popular.
We found that reshaper 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.