
Research
TeamPCP Compromises Telnyx Python SDK to Deliver Credential-Stealing Malware
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.
babel-react-rmodel
Advanced tools
处理react的表单组件是很麻烦的事,因为我们想要让它变成受控组件,这导致往往处理一个表单组件就要重复代码,所以为了提供r-model的语法糖来应对这种情况,当然这也是就是react版的双向数据绑定
class App extends React.Component {
constructor(props) {
super(props);
this.state={
inputVale:"🍺🍺hello react-model"
}
}
render() {
const {inputVale} =this.state
return (
<div>
<input type="text" r-model={inputVale} />
</div>
)}
}
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
inputVale: "hello react-model"
};
}
render() {
const {
inputVale
} = this.state;
return React.createElement("div", null, React.createElement("input", {
type: "text",
value: inputVale,
onChange: e => {
this.setState({
[`${this.state.inputVale}`]: e.target.value
});
}
}));
}
}
class App extends React.Component {
constructor(props) {
super(props);
this.state={
inputVale:"🍺🍺hello react-model"
}
}
alert=()=>{
window.alert(this.state.inputVale)
}
render() {
const {inputVale} =this.state
return (
<div>
<input onChange={this.alert} type="text" r-model={inputVale} />
</div>
)}
}
class App extends React.Component {
constructor(props) {
super(props);
_defineProperty(this, "alert", () => {
window.alert(this.state.inputVale);
});
this.state = {
inputVale: "🍺🍺hello react-model"
};
}
render() {
const {
inputVale
} = this.state;
return React.createElement("div", null, React.createElement("input", {
onChange: e => {
this.setState({
[`${this.state.inputVale}`]: e.target.value
});
this.alert(e);
},
type: "text",
value: inputVale
}));
}
}
FAQs
react版的双向数据绑定-- r-model
The npm package babel-react-rmodel receives a total of 1 weekly downloads. As such, babel-react-rmodel popularity was classified as not popular.
We found that babel-react-rmodel 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
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.

Security News
/Research
Widespread GitHub phishing campaign uses fake Visual Studio Code security alerts in Discussions to trick developers into visiting malicious website.