I am looking for a higher level language that javascript writes out. in other words, the relation of this language to javascript is similar to the relation of C ++ having assembly code.
The requirements of this higher level language are a safe type, simple refactoring, capable of having classes, inheritance, etc. (abit like java / C # / vb.net).
The advantage is that I can code in a higher level language without relying on “hacks” to inherit javascript. Also, I don’t need to do any runtime / duck checks, since a higher level language will impose a type safety constraint, and the generated javascript will just “complete the job”.
Additional benefits can be any advantages that we could have when we code in C ++ compared to coding in the assembly.
I am going to write this higher level language first, but it works too much, and I was wondering if anyone had really done something like that already.
source
share