Essentially the same html/css rendering of Firefox or Chromium, still able to access the www, but with javascript fully removed for another language that can be interpreted - like python or lua. Is this feasible?
Essentially the same html/css rendering of Firefox or Chromium, still able to access the www, but with javascript fully removed for another language that can be interpreted - like python or lua. Is this feasible?
Browser-native TS would run directly on the browser without compiling.
At least in the node.js native TS implementation, they strip the types and don’t do checks, so you don’t get runtime type checks:
https://nodejs.org/learn/typescript/run-natively
I think, but I’m no expert, but in order to have type checking you need to have some kind of compilation check? You cant just start interpreting and hope to work things out on the fly?