Hacker News new | ask | show | jobs
by boubiyeah 2899 days ago
The other huge difference is how much React beneficiates from static typing (typescript for instance) whereas just like angular, vue templates and all the glue code cannot possibly benefit from it. A vue or angular app is almost as typed checked as a JS app.

I feel most vue lovers don't care about static typing.

2 comments

Vue 3.x (future) is targeting first class Typescript support

https://github.com/vuejs/roadmap/blob/master/README.md

Vue templates do not, but non-template component code very much benefits from Typescript. And of course, there is a lot of non-component code in SPAs. Vue app might be two thirds as checked as React app.