[Vuejs]-Should i use front end framework (like react, Vue.js etc) for eCommerce and blog websites or vanilla JavaScript?

0๐Ÿ‘

A general answer to a very general question: it usually makes sense to use some readymade framework because chances are that some of the problems you are going to face have already been solved in the framework. So instead of reinventing the wheel just use it!

-1๐Ÿ‘

The final decision depends on your business needs and the size of your project.

Regarding the project size: React is the best choice to develop larger web applications such as SaaS and e-commerce products. It has a dedicated documentation for learning React quickly and a wide development community. Additionally, React has exceptionally high-performance and functional features that are required by any e-commerce projects that involve a lot of interactions with the user.
On the other hand, Vue.js is more suitable for smaller applications.

Regarding the need of mobile apps: If you are considering having a mobile app. So, by using React.js, you can build the frontend of your mobile apps without having to use different JS frameworks (React Native).
Vue.js does not have a self-developed solution for mobile app development by its one. you can use Weex (developed by Alibaba)to make apps for both Android and iOS mobiles, but this is not common to use yet and there could be some doubts about its long-term support.

Leave a comment