Introducing Bundle Compiler
github.com
Introducing Bundle Compiler
1–9 of 9 posts
Re: Introducing Bundle Compiler
#2Seems like a perfect use case for WebAssembly once it's adopted. Instead of each framework creating their own bytecode implementation and VM to match it.
Re: Introducing Bundle Compiler
#3> Once we have loaded the program we simply set the program counter to the handle and start executing the VM. Seems like a perfect use case for WebAssembly once it's adopted. Instead of each framework creating their own bytecode implementation and VM to match it.
Re: Introducing Bundle Compiler
#41. How does render time compare to the same thing without the AOT compiler?
2. How does render time compare to React or Inferno?
3. Are Glimmer templates type safe, or are they plain old strings?
4. How do I consume compiled templates? It seems like I need to transform my code to use compiled templates as opposed to raw templates?
Re: Introducing Bundle Compiler
#5Re: Introducing Bundle Compiler
#6If you could AOT compile the templates into bytecode, which has to be parsed, why not just AOT compile the templates straight to JavaScript(like Angular 2/4)?
Re: Introducing Bundle Compiler
#7If you could AOT compile the templates into bytecode, which has to be parsed, why not just AOT compile the templates straight to JavaScript(like Angular 2/4)?
Handlebars -> JS/TypeScript compiler -> Bytecode -> JS probably anyway -> HTML seems like a lot of work.
Re: Introducing Bundle Compiler
#8> Once we have loaded the program we simply set the program counter to the handle and start executing the VM. Seems like a perfect use case for WebAssembly once it's adopted. Instead of each framework creating their own bytecode implementation and VM to match it.
I'm baffled... why aren't they compiling to JS? They're cheating the runtime out of the ability to JIT the resulting code, which seems like a huge penalty.
However, what they seem to be going for is a reduction of the time it takes to download and parse the code, so a specialized compressor makes sense. WebAssembly or the Binary AST proposal would change the calculation, but maybe it still works for them.
Re: Introducing Bundle Compiler
#9If you could AOT compile the templates into bytecode, which has to be parsed, why not just AOT compile the templates straight to JavaScript(like Angular 2/4)?
See past discussion: https://news.ycombinator.com/item?id=14050625