Live data from Hacker News

Thoughts on React and Vue

news.ycombinator.com

1–3 of 3 posts

Thoughts on React and Vue

#1
Honestly they are both phenomenal tech stacks. My current thoughts are that Vue is less opinionated and has a lighter transpilation pipeline, but doesn't have anything that can match React Native. What are your thoughts?

Re: Thoughts on React and Vue

#2
I prefer React because JSX has a one-to-one translation to JS code. It makes reasoning through edge cases and interactions with builtins much easier than with template language-based stuff.

Re: Thoughts on React and Vue

#3

I prefer React because JSX has a one-to-one translation to JS code. It makes reasoning through edge cases and interactions with builtins much easier than with template language-based stuff.

A good point. I like templates because they seem to require less transpilation, which makes the process of development easier overall. Thanks for the reply.