60 questions
3
votes
4
answers
1k
views
Extending SCSS Styles in an Angular Dashboard with Plugin Architecture
I am developing a Dashboard in Angular with a Plugin Architecture to keep it easily extensible. The dashboard consists of pre-defined visualizations like scatter plots. I also want to allow adding ...
1
vote
0
answers
819
views
Crossplatform Plugin architecture with MAUI
My goal is to create app on Android/Windows using MAUI, and as I want to be able to add to this app more functionality by plugins, I want to create some simple plugin system.
This plugins should be ...
1
vote
0
answers
1k
views
Spring Boot - Best way to build a plugin architecture that loads and unloads plugins at runtime
I am writing a Spring Boot API application, which has to have a plugin architecture. Following is a typical journey:
My App can execute a task (taking some input and returning an output)
I have an ...
0
votes
1
answer
513
views
How to use prism scoped RegionManager in a modular app?
In the prism docs a scoped RegionManager is created somehow like this:
IRegion detailsRegion = this.regionManager.Regions["DetailsRegion"];
View view = new View();
bool ...
1
vote
1
answer
223
views
Is it safe to run user-made C# code in an (isolated) Azure function?
I'm working on some kind of plugin architecture where people can submit small pieces of C# code themselves and it will execute every hour on Azure.
Is this secure or can they easily compromise your ...
1
vote
0
answers
54
views
is Microsoft ASP.NET WebHooks a viable way for building a plugin architecture?
i am designing an architecture for third parties to be able to add and extend functionalities to my ASP.NET MVC web application though plugins. I am thinking of using Microsoft ASP.NET WebHooks as a ...
0
votes
1
answer
537
views
Communication between two plugins in C#
I have two plugins that are running inside a third-party host application. The host application has an event called DocumentOpened that is raised when a document is opened.
Both plugins, Plugin A and ...
9
votes
1
answer
4k
views
Angular App dynamically load plugin without recompile
I'm trying to develop the frontend of my Web Api (NET CORE) pluginable application. I would like to use Angular 9 but im not an expert in angular.
My backend was designed to be extensible and at ...
2
votes
1
answer
2k
views
Dynamic plugins architecture. Loading jar files from a directory on Spring boot application
I know this question popped up here and there but the posts about this are quite old.
I have a Spring Boot application. I have the need to allow developers develop plugins, implementing an interface ...
7
votes
1
answer
2k
views
How to implement the Plugin Architecture in Flutter Dart
I want to implement a plugin architecture in Flutter Dart. The process will be as follows:
1. User downloads the app.
2. The user loads plugins from our site.
3. The apps look if the plugin implements ...
4
votes
1
answer
1k
views
How to control Spring context initialization errors
Let say we have a Spring bean:
@Component
class PluginsProviderImpl implements PluginsProvider {
private final List<PluginInterface> plugins;
public PluginsProviderImpl(List<...
1
vote
2
answers
365
views
Building a plugin-based application with Simple Injector
I have been given the task to write a technical specification (and later implement) a system that will be build on a few sub-modules. The sub-modules will be developed partly in parallel so I would ...
0
votes
1
answer
283
views
How to structure Redux for a highly de-coupled, plug-n-play complex component?
I'm pretty new to Redux and would like to use it my application but I'm stuck at architecture/design phase for the Redux part. Here are my requirements and my suppositions regarding the design.
...
11
votes
1
answer
4k
views
Dynamically load modules with Webpack using Typescript
I'm trying to build a web app which supports plugins, the environment is Angular 2 (so far), Typescript 2.1 and Webpack 2.
I have some extension points (slots) where plugins can draw their content in: ...
1
vote
1
answer
245
views
Why Orchard doesn't have model view controller?
I am working with orchard. writing such a project is my dream!.. so i started a research a bout that. which interested me about orchard, is while orchard is mvc project but why it doesn't have any ...