
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
nested-accessor
Advanced tools
Accessor for getting and setting values of nested data structures (arrays or objects)
Accessor for getting and setting values of nested data structures (arrays or objects).
npm i
npm run test
const source = {
"data": {
"id": 1,
"name": "Countries classifier"
},
"countries": [{
"name": "Russia",
"cities": [{
"name": "Moscow",
"extra": {
"codes": [{
"value": 7495
},
{
"value": 7499
}
]
}
},
{
"name": "Petersburg",
"extra": {
"codes": [{
"value": 7812
}]
}
}
]
},
{
"name": "Belarus",
"cities": [{
"name": "Minsk",
"extra": {
"codes": [{
"value": 375017
}]
}
}]
}
]
};
const accessor = new NestedAccessor(input);
console.log(accessor.get('data.name')); // 'Countries classifier'
console.log(accessor.get('countries.name')); // ['Russia', 'Belarus']
console.log(accessor.get('countries.cities.name')); // ['Moscow', 'Petersburg', 'Minsk']
console.log(accessor.get('countries.cities.extra.codes.value')); // [7495, 7499, 7812, 375017]
accessor.set('data.name', 'New name');
console.log(accessor.get('data.name')); // 'New name'
FAQs
Accessor for getting and setting values of nested data structures (arrays or objects)
We found that nested-accessor 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.