-
Just a thought, but why are we transpiling client JavaScript from server code, instead of server (based) code to client code?
-
Specifically, the server *has* to reload when changes are made. So why not rebuild during boot.
-
I guess one big factor is the implicit globals that client side affords. There's a big win to using commonjs-like modules for private scope.