
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@race-ui/react-live
Advanced tools
支持静态react代码,在线编辑与运行。 具体细节请查看 examples
npm install @race-ui/react-live --save
# 其他依赖安装
npm install @babel/standalone codemirror react-codemirror2 acorn escodegen --save
import ReactLive from '@race-ui/react-live';
import '@race-ui/react-live/assets/index.css';
const Code = `
class Demo extends React.Component {
constructor(props) {
super(props)
this.state = {
value: 'Hello11331!'
}
this.handleChange = this.handleChange.bind(this)
}
// name
handleChange(event) {
this.setState({ value: event.target.value });
}
render() {
var value = this.state.value;
return (
<div>
<h1>Hello this is a Online Editor</h1>
<input type="text" value={value} onChange={this.handleChange} />
<p>{value}</p>
</div>
);
}
}
ReactDOM.render(<Demo />, mountNode);
`;
ReactDOM.render(<ReactLive code={Code} />, mountNode);
| 属性 | 默认值 | 参数类型 | 用法说明 |
|---|---|---|---|
| code | 必传 | string | 执行的react代码字符串 |
| className | - | string | 该组件样式 |
| defaultShowType | 'All' | ShowType('All','Code','Preview') | UI显示情况('All': code与运行结果都显示, ‘Code’: 只显示code, 'Preview': 只显示渲染的UI) |
| scope | 'React', 'ReactDOM', 'mountNode' | ReactLiveScope | 执行code中的方法、组件等变量 |
| onChange | - | (currentCode: string) => void | 外部控制编辑代码 |
FAQs
react code live run
We found that @race-ui/react-live 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.