
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
[](https://badge.fury.io/js/detto) [](https://github.com/iendeavor/detto/actions) [.
Array Manipulations (push, pop, shift, unshift, splice, reverse) is Fully Supported.
Zero Dependencies, Native Javascript only.
$ yarn add detto
<script src="https://unpkg.com/detto"></script>
import { proxy } from 'Detto'
const object = {
deep: {
nested: 123,
},
}
const detto = {}
// watch data changing
const callback = (changedDetto, path) => console.log(path)
const proxiedObject = proxy({ object, detto, callback })
// > []
// > ['deep']
// > ['deep', 'nested']
console.log(JSON.stringify(detto))
// > {"deep":{"nested":{}}}
proxiedObject.deep.nested = { key: 123 }
// > ['deep', 'nested']
// > ['deep', 'nested', 'key']
console.log(JSON.stringify(detto))
// > {"deep":{"nested":{"key":{}}}}
proxiedObject.deep.nested = {}
// > ['deep', 'nested']
console.log(JSON.stringify(detto))
// > {"deep":{"nested":{}}}
delete proxiedObject.deep
// > []
console.log(JSON.stringify(detto))
// > {}
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
This project is licensed under the MIT License - see the LICENSE file for details
FAQs
[](https://badge.fury.io/js/detto) [](https://github.com/iendeavor/detto/actions) [![Coverage Status](https://coveralls.io/repos/github/iende
We found that detto 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 discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.