
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-plugin-system
Advanced tools
React plugin development system
Independent react plugin development, plugin can be quickly inserted and pulled out, plugin async loading mode.
// src/index.js
import { register } from "react-plugin-system";
let pages = require.context("@plugins", true, /\/.*config\.js$/);
pages.keys().map(key => {
let config = pages(key).default;
// reigster plugins
register(config);
return config;
});
// src/pages/*/*.jsx
import React from "react";
import { callPlugin, Plugin } from "react-plugin-system";
export defalut class ButtonBox extends React.Component {
constructor(props) {
super(props);
this.state = {};
}
/**
* add
*/
addHandle = async () => {
// callPlugin
const path = (callPlugin('add'));
const plugin = await import("@plugins/" + path);
(plugin.default)({ a: 1 });
}
/**
* infoClose
*/
infoCloseHandel = (data) => {
console.log(data)
}
render() {
const path = (callPlugin('info'));
return <div>
<Button icon="plus" onClick={this.addHandle}>新增</Button>
<Plugin importComponent={() => { return import("@plugins/" + path) }} onClose={this.infoCloseHandel} />
</div>
}
}
// src/plugins/add/config.js
export default {
id: "add",
index: "add/index.js"
};
// scr/plugins/add/index.js
import { message } from "antd";
export default function(config = {}) {
const { calllBack = () => {} } = config;
message.success("Add success!");
calllBack();
}
// src/plugins/info/config.js
export default {
id: "info",
index: "info/index.jsx"
};
// scr/plugins/info/index.jsx
import React from "react";
import { Button, notification } from "antd";
export default class Info extends React.Component {
constructor(props) {
super(props);
this.state = {};
}
clickHandle = () => {
const { onClose = () => {} } = this.props;
notification["info"]({
message: "Project info",
description: "Here is the notice!",
onClose: () => {
onClose("User Close");
}
});
};
render() {
return (
<Button icon="info-circle" onClick={this.clickHandle}>
Info
</Button>
);
}
}
The system needs to add "@plugins" alias.
// webpack.config.js
{
alias: {
"react-native": "react-native-web",
"@plugins": path.resolve("./src/plugins"),
}
}
Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
FAQs
react-plugin-system project build by rollup-cli.
We found that react-plugin-system 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.