Is it possible to load many libraries at the same time with loadable.lib ?
See original GitHub issueNesting loadable.lib components seems to work but requests happen in a waterfall-like fashion, which is not optimal. Can something like this be supported?
loadable.lib(() => Promise.all[import('moment'), import('somthing-else')])
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Is it possible to load many libraries at the same time ... - GitHub
Nesting loadable.lib components seems to work but requests happen in a waterfall-like fashion, which is not optimal.
Read more >Loading library - Loadable Components
loadable.lib lets you defer the loading of a library. It takes a render props called when the library is loaded. ... You can...
Read more >Load multiple packages at once - Stack Overflow
Several permutations of your proposed functions do work -- but only if you specify the character.only argument to be TRUE . Quick example:...
Read more >4. Dynamically Loaded (DL) Libraries
Dynamically loaded (DL) libraries are libraries that are loaded at times other than during the startup of a program. They're particularly useful for ......
Read more >An introduction to Webpack Code-Splitting, Loadable ...
(With HTTP/2 multiplexing, multiple request and response messages can be ... react-loadable is a very popular older third party library that ...
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
Hello @BowlingX, you can create another file:
You can load them using
loadable.lib
and use the previous tip if you want.