Any examples of production codebases without dynamic modules?
See original GitHub issueI’m having troubles with dynamic modules (something wrong with my getModule()
calls not returning the right thing), but I don’t need them to be dynamic. Is there a good example with a few modules where they’re not dynamic? It would help to see a whole working system.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:4
- Comments:10 (3 by maintainers)
Top Results From Across the Web
Common modularization patterns - Android Developers
This page gives an overview of some general rules and common patterns that you can employ when developing multi module Android apps.
Read more >Using Native JavaScript Modules in Production Today
The module test example it studied consisted of unoptimized and unminified ... You can do all of that and still use modules in...
Read more >Scaling Slack's Mobile Codebases: Modularization
We use the word 'module' to describe a subproject — generally a static or dynamic framework linked into the app. Prior to Duplo,...
Read more >Python at Scale: Strict Modules - Instagram Engineering
Strict modules place some limitations on what can happen at module top-level. All module-level code, including decorators and functions/ ...
Read more >Dynamic Feature Modules in a Production App
Remove shrinkResources from app.gradle; Modular Codebase: The most ... It is important to name the module in the format com.example.modulename and not ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Wow, I got it working! Thanks @danielroe !
store/index.ts
(don’t try to import it fromuser.ts
and import intostore/index.ts
)Then the proper export stanza in
store/index.ts
is this:I’ve updated my repo above – and I’d be happy to include this in the docs if you think that’s a good idea. (It took me a lot of hair-pulling to get to this state!)