DEV Community

Discussion on: Is Node.js Single-Threaded or Multi-Threaded? and Why?

Collapse
 
coen_c7a57bc84f2f2 profile image
Coen de Wit

Please use the correct facts when referencing other environments like C# (and probably Java too on that topic). With dotnet (C#) you can choose to use AOT compilation when optimizing for startup time. But default it compiles to byte-code which during runtime is JIT compiled in multiple tiers, optimizing during the lifetime. It is even possible to create a profile from test runs to optimise before runtime.