Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
class-autobind
Advanced tools
This package provides a single function, autobind
, for use within a constructor to bind all methods to the instance itself.
For example, this allows us to pass a method to an event handler element.addEventListener('click', this.onClick)
and be sure the onClick
method will always be called with the right context.
Note: This has some specific logic for React, but could be used in any project.
import autobind from 'class-autobind';
class MyComponent extends React.Component {
constructor() {
super(...arguments);
autobind(this);
}
render() {
return <button onClick={this.onClick}>Click Me</button>;
}
onClick() {
console.log('Button Clicked');
}
}
If your component will possibly be subclassed (you really should not do this, but some third-party libraries like react-css-modules do so) then you will need to specify which prototype will be the source of methods that are to be automatically bound.
import autobind from 'class-autobind';
class MyComponent extends React.Component {
constructor() {
super(...arguments);
autobind(this, MyComponent.prototype); // Note the second parameter.
}
render() {
/* ... */
}
}
class MySubClassedComponent extends MyComponent {
/* This is probably a very bad idea. */
}
This software is BSD Licensed.
FAQs
Method auto-bind for ES6 (ES2015) classes
The npm package class-autobind receives a total of 32,198 weekly downloads. As such, class-autobind popularity was classified as popular.
We found that class-autobind 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.