Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
bind-with-arguments
Advanced tools
easily bind events excute context and dynamic arguments in React
彻底解决React
事件绑定中this
和参数的问题
npm install bind-with-arguments --save
import React, { Component } from 'react';
import bindWithArguments from 'bind-with-arguments';
class Comp extends Component {
async loadDdetail(id) {
// fetch
}
// 异步函数并且有参数
@bindWithArguments
async asyncParams(id) {
const detail = await this.loadDdetail(id);
// ...
}
// 异步函数并且无参数
@bindWithArguments
async asyncNoParams() {
// fetch
this.setState({
xxx: 'xxx'
});
}
// 同步函数并且有参数
@bindWithArguments
syncParams(id, name) {
if (id && name) {
this.setState({
xxx: 'xxxx'
});
}
}
// 同步函数并且有参数
@bindWithArguments
syncNoParams() {
const { yyy } = this.state;
if (yyy === 'zzz') {
this.setState({
xxx: 'xxxx'
});
}
}
render() {
const { list } = this.state;
return (
<div className='warapper'>
{
list.map((row) => {
return (
<div className='row' key={row.id}>
<button onClick={this.asyncParams(row.id)}>异步函数并且有参数</button>
<button onClick={this.syncParams(row.id, row.name)}>同步函数并且有参数</button>
</div>
);
})
}
<button onClick={this.asyncNoParams}>异步函数并且无参数</button>
<button onClick={this.syncNoParams}>同步函数并且有参数</button>
</div>
)
}
}
FAQs
easily bind events excute context and dynamic arguments in React
The npm package bind-with-arguments receives a total of 0 weekly downloads. As such, bind-with-arguments popularity was classified as not popular.
We found that bind-with-arguments 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.