I've got an electron app that I'm interested in adding plugin support for..
My though was it would be easiest to just allow people to implement a component with specific prop types and then have the ability to "register" components with predefined contribution points via external paths:
{
"welcome-banner": "path/to/my/welcome/banner"
}
I understand this is kinda a security nightmare, but this is an internal tool and we can trust the code we are adding.
Curious if this plugin might help accomplish this goal
I've got an electron app that I'm interested in adding plugin support for..
My though was it would be easiest to just allow people to implement a component with specific prop types and then have the ability to "register" components with predefined contribution points via external paths:
I understand this is kinda a security nightmare, but this is an internal tool and we can trust the code we are adding.
Curious if this plugin might help accomplish this goal