Will Typescript be able to use Go's concurrency in Typescript 7? #520
-
In the yesterday's anoucment many of the enhancements seemed to be unlocked by using Golang's ability to handle concurrency. With this port into go, will tyepscript developers be able to perform concurrent operations writing in typescript but implement in go in some way? If this isn't in scope for TS 7, is this something that may be coming in the not to distant future? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The port is primarily about improving the compiler’s performance — not about giving TypeScript direct access to Go’s concurrency primitives. TypeScript remains a superset of JavaScript and thus, at runtime, your code is still executed on a JavaScript engine. |
Beta Was this translation helpful? Give feedback.
The port is primarily about improving the compiler’s performance — not about giving TypeScript direct access to Go’s concurrency primitives. TypeScript remains a superset of JavaScript and thus, at runtime, your code is still executed on a JavaScript engine.