Socket
Socket
Sign inDemoInstall

react-supervisor

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-supervisor

React tool designed to supervise react components. It was created to organise the process of embedding react components into your templates or MVC applications. One library to rule them all.


Version published
Maintainers
1
Created
Source

react-supervisor

react-supervisor is a very simple npm library (<= 4kb) for dealing with react components in templates (standard MVC way). If you ever worked with mid/big enterprise software with multiple technologies you probably know how difficult it is to maintain various technologies in one or multiple projects. You will find it very useful to create new components with React and append them in your website in organised way. Hope it will help you!

Warning: This tool is not designed for React apps created via create-react-app or common SPA development. However, if you want to embed multiple SPA apps (like microfrontends or so on) your welcome to use it!

Installation

npm install react-supervisor
# or 
yarn add react-supervisor

Usage

// some.js
import { ReactSupervisor } from "react-supervisor";
import ReactDOM from "react-dom";
import { Button } from "@material-ui"
import {
    CallMeModal,
    AdminDashboard,
    ChatBot
} from "./some-react-components"


ReactSupervisor.registerComponent(".admin-dashboard", AdminDashboard);
ReactSupervisor.registerComponent(".chat-bot", ChatBot);
ReactSupervisor.registerComponent(".call-me-modal", CallMeModal);
ReactSupervisor.registerComponent(".awesome-button", Button);
ReactSupervisor.registerComponentWithCustomRender(".really-awesome-button", (el, props) => {
    // do whatever you want with props or any other logic
    ReactDOM.render(el, <Button {...props} />);
});

const reactSupervisor = ReactSupervisor.initialize();
<!-- some.html -->
<html lang="en">
    <body>
        <div class="admin-dashboard">
            <div></div>
        </div>
        <div class="chat-bot"></div>
        <div class="call-me-modal"></div>
        <div class="awesome-button" data-label="Awesome button" data-color="secondary"></div>
        <div class="really-awesome-button" data-label="Really awesome button" data-color="primary"></div>
        
        <!-- it could be in a <head> as well. It's listening on DOMContentLoaded -->
        <script src="index.js"></script>
    </body>
</html>

output

Contributing

Any help would be much appreciated. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

Keywords

FAQs

Package last updated on 14 Jun 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc