Hacker News new | ask | show | jobs
by snek 2536 days ago
Very nice numbers, although worth mentioning hermes only appears to support es5, so there's way less stuff to load.
1 comments

Hermes compiles JS ahead of time to bytecode. The VM takes bytecode in as input, not source code. The ES5 vs. ES6 distinction doesn't matter as much as in other engines where the runtime takes source code as input, and as a result has to pay the more expensive ES6 parsing cost at runtime.