DEV Community

Cover image for Learning react as a Vue developer
Lewis kori
Lewis kori

Posted on

Learning react as a Vue developer

I've been a long term vue.js developer and I have to say, I enjoy every moment of working with it. However, I recently decided to try out react.js. A number of reasons contributed to this decision.

  1. My workplace primarily uses react for frontend projects.
  2. I wanted to explore a new way of writing code and didn't want to remain stagnant in my knowledge.
  3. Better position me for future opportunities as I can fit in both vue or react projects.

With this in mind, I set about getting familiar with the library. For this, I skimmed through the documentation and then watched Brad Traversy's crash course on youtube. This helped to make me aware of some niche concepts or coding style that may have been missed in the documentation.

All in all, once I got my basic knowledge, I set about making a project as this is the best way I learn.

For this, I decided to recreate the circle.so landing page. The platform enables you to bring together your discussions, memberships, and content. Integrate a thriving community wherever your audience is, all under your own brand. It gives creators the tools they need to thrive and this is something I'm quite passionate about so the challenge was more enjoyable for me.
For the frontend, I utilized chakra-ui. A wonderful open source component library.

As I explained before, I watched a tutorial and read some bit of documentation. This helped me get familiar with the react syntax, namely jsx, functional and class components and props.

Next, I planned on mapping my knowledge and I realised that with my vue.js skills, I could transfer some of the skills to react. All I had to do during the project development was try and figure out how the following worked in react and differ in Vue.

  1. Passing props and setting their types and default values.
  2. Routing
  3. Conditional rendering
  4. Reusable layouts and Slots, I found out they're called children in react so this is very different from Vue but not a difficult concept to grasp.
  5. Emitting function calls to parent components.
  6. Lifecycle methods.
  7. Local state updates
  8. Global state management. (I'm yet to get here). I've heard there's redux and recoil, I'd appreciate any advice on which one to use.

This is only about my second week of trying out react and there's quite a lot I need to cover. However, I feel this style of mapping previous knowledge and building on top of that has greatly helped in picking up new skills fast.

I was able to create the landing page below and a couple of routes.

circle-clone

The code can be found on my Github for anyone interested or for any reviews on some bad practices I may be using.

GitHub logo lewis-kori / circle-so-clone-react

a recreation of the circle.so community web page using react and chakra-ui

Circle communinty platform clone

The project is an opportunity for me to familiriaze myself with react.js as I primarily use vue.js for frontend I chose circle.so as a challenge as I'm passionate about the creator economy and making tools to enhance the lives of all these wonderful creatives.

For the styling, I strayed from my go-to tools, bootstrap/bulma and went with chakra-ui, a wonderful open source component library.

circle-clone

live demo

click here to access the live project

Getting Started with Create React App

This project was bootstrapped with Create React App.

Available Scripts

In the project directory, you can run:

yarn start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits.
You will also see any lint errors in the console.

yarn test

Launches the test runner in the interactive watch mode.
See the…

The live project is hosted on netlify as well.

I'm finding react enjoyable to work with and to be honest I really don't understand why developers keep arguing over frameworks/libraries. At the end of the day they're just tools and most likely a new one will arise and whatever we were arguing over won't be the shiny new thing. Understanding the underlying concept is what's most important to me.

I hope this article will help more people pick up new tools outside their comfort zone and improve how they pick up new skills if they find this method useful.

additional resources

  1. vue to react roadmap
  2. react documentation

Have any questions or wanna say hi, my Twitter dm and chat here on dev is always open.

Top comments (13)

Collapse
 
ascensus_mdb profile image
Michal Szymanski

Nice article, thanks!

But the way, if you are looking for React UI libraries I would strongly recommend MDBootstrap React, which integrates the latest Bootstrap 5 & React 17 ;)

mdbootstrap.com/docs/b5/react/

Collapse
 
lewiskori profile image
Lewis kori

Thank you!
I keep hearing my colleagues praising this.
I'll definitely get to it.

Collapse
 
ruheni profile image
Ruheni Alex

I love the article! 🤩
I would recommend React Query for data fetching. It makes handling server state sooooo easy and fun. It does so much for you.

Collapse
 
lewiskori profile image
Lewis kori

Thanks 🎊

That looks super promising.
Is it like axios or?

Collapse
 
ruheni profile image
Ruheni Alex

No, it's not.

React-Query provides hooks for data fetching. You can use it with your preferred data-fetching library (e.g., fetch, axios, graphql-request, etc.). It is technology agnostic and works with any fetching library. You can wrap react-query around your API request functions.

Collapse
 
erchis profile image
erchis

I came here expecting the article was about little bits of in depth difference, and some bits of learning curve. But no, this was some blog post about personal achievement.

Collapse
 
lewiskori profile image
Lewis kori

Hey. I'm sorry you feel that way and understand your sentiments. I usually try and write in depth articles as you can see from all my previous posts.

So let me first fully adjust to the library before I can make well informed comparisons.

That being said I don't think there's anything wrong in documenting the learning journey. And if this will help someone out there get the courage to try something new with a bit of structure then that's fine by me.
Take things easy and don't be so quick to judge :)

Collapse
 
erchis profile image
erchis

ah yeah, I looked up chakra UI thanks to you.

Collapse
 
amrelmohamady profile image
Amr Elmohamady

+1

Collapse
 
kaii profile image
Leo
Collapse
 
thuhtetdev profile image
Thu Htet Tun

Great content bro

Collapse
 
lewiskori profile image
Lewis kori

Thank you! Happy you liked it.

Collapse
 
majscript profile image
MajScript

Thanks for this !