Re: Re: Indexing HTML Attributes and Unique Indexes

2019-05-24 Thread Isiah Meadows
You'd have better luck asking for this feature in https://discourse.wicg.io. ES Discuss is about the JS language itself and the related ECMAScript spec, not the Web APIs that are implemented in most browsers, usually separately to the JS implementations themselves. - Isiah Meadows cont...@isi

Re: how many async-modules can js-app practically load?

2019-05-24 Thread Isiah Meadows
There's two main reasons why it scales: 1. Modules are strongly encapsulated while minimizing global pollution. 2. The resolution algorithm applies the same logic no matter how many modules are loaded. It's much easier for it to scale when you write the code unaware of how many modules you might

Re: how many async-modules can js-app practically load?

2019-05-24 Thread kai zhu
> Asynchronous loading differs only in > that it takes more code to express the same logic and you have to take > into account concurrent requests (and you need to cache the request, > not the result), but it's otherwise the same from 1km away. so async-loading 50 ```

Re: how many async-modules can js-app practically load?

2019-05-24 Thread guest271314
> so async-loading 50 ```

Re: how many async-modules can js-app practically load?

2019-05-24 Thread kai zhu
> Why would 50 separate ```

Re: how many async-modules can js-app practically load?

2019-05-24 Thread guest271314
Have not tried babel or webpack. You can write the test to answer your own inquiry and post the result at a gist. On Sat, May 25, 2019 at 6:34 AM kai zhu wrote: > Why would 50 separate ```