top | item 22414073

(no title)

redonkulus | 6 years ago

Is this generally the progression through the years?

Backend dev -> Angular -> Vue?

I primarily do frontend and I never found the Angular/Vue frameworks to compelling to learn. I like React more but don’t have to use it with every project. I’m curious if the Angular/Vue audience is of a certain type of engineer.

discuss

order

cdrini|6 years ago

My path was FrontEnd -> AngularJS -> Vue ; Personally I liked angular for the same reason I think people liked jQuery back in the day; it just made a bunch of previously annoying things easy to do--lots of helper methods, custom components, etc.--which let me develop things faster. Also all those utils had good docs, all in one place! Besides dev speed, it also managed complexity better by allowing me to organise things (which was a challenge before es6). Vue is less of a kitchen sink library, but it still makes it easier for me to avoid dealing with some things I don't want spend time on--binding, components, etc., and it also let's me manage complexity better through organising things with components. There aren't many projects I'd start without it; it just feels so much faster to develop if I'm working on a UI heavy app.

pixelbash|6 years ago

I went through a phase of using pub sub with jquery + rivets + radio + underscore templates years ago. Two way data binding was a revelation for forms.

Then came vue which solved all of this in a clean way with a lot of other benefits to boot. I chose it over react because it can coexist relatively fine with old code, and with years worth of sites to maintain there's a fair amount of that.