
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@jdomizio/react-class
Advanced tools
Smart Auto-Binding for your React components.
$ npm install react-class --save
Instead of extending React.Component you have to extend the class exported by react-class.
import Component from 'react-class'
// or import { Component } from 'react-class
class MyApp extends Component {
render() {
return <div {...props} onClick={this.onClick}>
//onClick is auto-bound to "this", so you can keep your code dry
</div>
}
onClick(){
console.log(this)
// this is correctly bound to the component instance
}
}
autoBind onlyIf you don't want to extend the class exported by react-class and instead just want autobinding, you can just import the autoBind function directly.
import 'react-class/autoBind'
// or
import { autoBind } from 'react-class'
// or
var autoBind = require('react-class/autoBind')
After importing/require-ing it, call autoBind in the component constructor:
import autoBind from 'react-class/autoBind'
class MyApp extends React.Component {
constructor(props) {
super(props)
autoBind(this)
}
render() {
// ... your rendering logic
}
}
autoBind supports a second param, that can be used to filter what gets auto-binding or not. It can be a function or an object.
autoBind(obj, filterFn) - only those methods in obj are bound to the object for which the filterFn returns trueautoBind(obj, skipObject) - the methods whose names are found in the skipObject as truthy are skipped from autobinding. Eg: autoBind(obj, { notBound: true, log: true }) will not bind the obj.notBound and obj.log methods to the obj object.Autobinding, which is a nice-to-have feature!
react-class is a very thin layer around React.Component, so just in case you decide removing it in the future, you'll be safe and will only have to do very minor code changes.
We're not doing anything magical!
FAQs
A carefully crafted base class for all your React components
We found that @jdomizio/react-class 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.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.