modular - Remotely adding/removing components in ReactJS? -
i want use reactjs front end of our new system.
the end system (in c#) has different modules can toggled on/off. each module has own set of dlls, meaning product can "shipped" without unnecessary module dlls. "you need chat functionality? here's dll, drop in bin folder, go!"
each dll pretty standalone no dependency on other, apart it's main parent abstraction.
i know, possible create similar in react front end? don't want have hundreds of react components listed bunch of 'if' statements show/hide them.
i each module responsible own rendering & actions. adding brand new feature easy 'building module' (not updating 'core' system files tell module).
gah, hope makes sense! point me in right direction? fools errand? achievable?
thank in advance.
this more question of how split frontend code react specific question. news is, it's possible. take @ webapack - bundling tool use react. not sure how modules , dlls work in c#, imagine have way how include different js bundles them. if so, webpack create these bundles.
Comments
Post a Comment