Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/macku/replugger
replugger - React pluggable application made easy!
https://github.com/macku/replugger
package package-manager packages pluggable plugin plugin-manager plugin-system plugins react
Last synced: 3 months ago
JSON representation
replugger - React pluggable application made easy!
- Host: GitHub
- URL: https://github.com/macku/replugger
- Owner: macku
- License: mit
- Created: 2017-09-01T09:55:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T04:31:04.000Z (about 2 years ago)
- Last Synced: 2024-04-25T06:21:09.930Z (9 months ago)
- Topics: package, package-manager, packages, pluggable, plugin, plugin-manager, plugin-system, plugins, react
- Language: JavaScript
- Size: 982 KB
- Stars: 9
- Watchers: 1
- Forks: 2
- Open Issues: 118
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# replugger
[![npm version](https://img.shields.io/npm/v/replugger.svg)](https://www.npmjs.com/package/replugger)
[![npm dependencies](https://img.shields.io/david/macku/replugger.svg)](https://david-dm.org/macku/replugger)
[![npm dev dependencies](https://img.shields.io/david/dev/macku/replugger.svg)](https://david-dm.org/macku/replugger?type=dev)
[![Build Status](https://travis-ci.org/macku/replugger.svg)](https://travis-ci.org/macku/replugger)
[![Coverage Status](https://s3.amazonaws.com/assets.coveralls.io/badges/coveralls_100.svg)](https://coveralls.io/github/macku/replugger?branch=master)
[![Greenkeeper badge](https://badges.greenkeeper.io/macku/replugger.svg)](https://greenkeeper.io/)## React pluggable application made easy!
The [replugger](https://github.com/macku/replugger) library was made to allow building React pluggable application. Build your own application or product but allow to extend it easily. Each part of your React application can contain **Slot** placeholder that can be filled by **external plugins**.
The API of the replugger library allows your plugin the decide how the would like to fill the slot. It can a small component like a link or even a full widget that will contain own **Slots**. You can fill the **Slot** with a component that can contain another **Slot** inside it!
The library also takes care of **additional routes** provided by the plugin. Let's assume your plugin would like to add an additional page to your application. Thanks to the [JavaScript Decorators](https://github.com/wycats/javascript-decorators) you can export any page with a unique route URL.
### Features
TBA
### Road map
TBA
### How to install
#### NPM and Yarn
You can install the library using **NPM**:
```bash
npm install replugger -S
```or if you prefer yarn:
```bash
yarn add replugger
```### How to use it
TBA
### Examples
#### Demo application with two plugins
Check the [live example](https://stackblitz.com/edit/replugger-demo-app) of the demo application [(source)](https://github.com/macku/replugger/tree/master/packages/demo-app).
### Source
The [replugger](https://github.com/macku/replugger) and its sub-packages are distributed as a [monorepo](https://github.com/babel/babel/blob/master/doc/design/monorepo.md).
For a full list of packages, see [the GitHub source](https://github.com/macku/replugger/tree/master/packages).