
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Observe changes to native JavaScript objects with CruddyJS. Based on the EcmaScript Harmony proposal, CruddyJS will send change updates when object values change. Here's how it works.
var observer = cruddy({ foo: 'bar' }, function (changes) {
console.log(changes);
})
observer.update(function (o) {
o.set('foo', 'boo')
})
> {
type: 'update',
name: 'foo',
object: { foo: 'boo' },
oldValue: 'bar'
}
Does your browser already support Object.observe
? No problem, CruddyJS simply uses the native functionality.
NodeJS
npm install cruddy
Depending on the type of class passed to CruddyJS, you will get one of two interfaces. For basic Object
classes you will receive a Model
. For Array
classes you will receive a Collection
.
cruddy({ foo: 'bar' }, callback)
.update(function (model) {
model.set('bar', 'foo')
model.destroy('foo', 'bar')
})
cruddy([1, 3, 2], callback)
.update(function (collection) {
collection.push(0, 4, 5)
collection.shift()
collection.sort()
})
EcmaScript 6+
FAQs
Observable Objects for the laggards
The npm package cruddy receives a total of 0 weekly downloads. As such, cruddy popularity was classified as not popular.
We found that cruddy 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.