Re: [w3c/webcomponents] HTML Modules (#645)

@AshleyScirra please, please do not ever use top-level await to load per-module resources. You will cause your app to block on every request for an HTML module, _in series_. This is a major hazard of top-level await and why I'm personally against the feature. cc @MylesBorins @domenic 

HTML Modules should be loaded by static imports so that they can be available when the importing module code needs them. That means we can't do this as pure user-land implementation.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/645#issuecomment-391357081

Received on Wednesday, 23 May 2018 13:59:30 UTC