
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
js-pointer
Advanced tools
Tiny, spec compliant implementation of the JSON Pointer spec RFC 6901 with 100% test coverage and no dependencies.
Install via NPM
npm i js-pointer --save
const jsPointer = require('js-pointer');
const object = { one: { two: 3 } }
jsPointer.get(object, '/one/two')
// → 3
const object = { one: { two: [3] } }
jsPointer.get(object, '/one/two/0')
// → 3
const object = { one: { two: [{ three: 4 }] } }
jsPointer.get(object, '/one/two/0/three')
// → 4
Please see the spec and tests for further detail of the JSON pointer format.
jsPointer.get(object, pointer)
Returns sub-object or value in object referred to by pointer.
If pointer does not refer to an object or value then undefined will be returned.
Plain object targeted by the pointer
string JSON pointer. A pointer beginning with # indicates a URI fragment, which will be URI decoded before processing.
FAQs
Tiny, spec compliant JSON Pointer RFC 6901 implementation.
The npm package js-pointer receives a total of 2 weekly downloads. As such, js-pointer popularity was classified as not popular.
We found that js-pointer demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.