Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 28, 2021 09:10 pm GMT

Comparing Vue.js to new JavaScript frameworks

Written by Samson Omojola

As frontend design becomes increasingly important for the success of an application, the need to work with the best frontend framework has become more of a necessity.

Finding the best framework to solve specific problems within a project provides a better frontend design and user experience, helping brands and developers attract and keep more users.

For developers working in JavaScript, Vue has become a popular and well-established framework. However, different projects require different solutions, and finding an alternative to Vue can propel a project forward with increased speed, performance, and community.

In this post, well compare Vue to Svelte, Riot, Hyperapp, and Alpine, some new, lesser-known JavaScript frameworks that have cultivated a following and provide useful features.

A quick Vue.js overview

Vue is an open source JavaScript framework that uses the Model-View-ViewModel (MVVM) design pattern that represents the three layers in Vue applications.

If you are familiar with the popular Model-View-Controller (MVC) pattern, Vue performs the controller task by using the view model layer.

In a Vue application, the model layer provides access to data. The logic for moving data from the model to the view and vice versa is housed by the view model layer.

A Vue model can look something like this:

var model_data = {  js_frameworks: [Vue, Svelte, Riot, Hyperapp, Alpine]};

The view model layer connects the view and model layers using two-way data binding. In Vue, a view model object can be instantiated as follows:

var vm = new Vue({   el: #app,  data: model_data});

Note that the el parameter connects the view model layer to any element in our view using the elements ID. In this case, we bind our view model layer to an element whose ID attribute value is app. The data parameter then connects the view model layer to the model.

The view layer consists of the DOM and all its elements, displaying the data housed by the model layer to users. The corresponding view for the model and view model layers above looks like the following:

<div id=app>  <ul>    <li v-for=framework in js_frameworks>{{framework}}</li>  </ul></div>

The ID of the outermost div above corresponds with the ID specified in the view model layer, providing access to the data in the model in our view. We use Vues syntax v-for to create a for loop to loop through the data and display it as a list.

Now that we are familiar with Vue and how it works, lets compare it with some new JavaScript frameworks.

Vue.js vs. Svelte

A common feature to consider when comparing frameworks is speed. In the case of Vue vs. Svelte, looking at how each framework builds and runs an app by manipulating the DOM provides this insight.

Because Vue renders an apps user interface through a virtual DOM, the enhanced copy makes manipulating it easier. And while this method is fast, compiling at runtime slows the loading process considerably.

Svelte, however, solves this performance problem at build time. This JavaScript framework is known for its speed and performance. It comes with a compiler that converts the Svelte framework code to vanilla JavaScript when running a build on an app.

When finishing building an app, all traces of Svelte vanish, leaving only vanilla JavaScript. And since browsers understand JavaScript, theres no need to download a library, eliminating time originally spent downloading.

Unlike Vue, Svelte makes changes to the DOM directly. Also, bundles with only vanilla JavaScript code are usually lighter than bundles that come with libraries.

All these aspects work together to improve overall performance.

While both Vue and Svelte have a simple, easy-to-understand syntax, Svelte requires slightly less code for implementing different functionalities.

Svelte also ditches design patterns altogether, compared to Vue, which uses the MVVM design pattern. Instead, Svelte creates encapsulated components with all the HTML, CSS, and JavaScript on the same page:

<script>  let name = "Samson";</script><main>  <input bind:value="{name}" />  <p>My name is {name}.</p></main><style>  p {    color: red;  }</style>

In the JavaScript code above, we created a variable that holds a string. In the HTML, an input box and paragraph are connected using two-way data binding using the bind attribute.

The code gives us a text box with the text that name holds. It inserts the text into the paragraph below the text box as well.

If we change the value in the text box, the value that name holds and the value inserted into the paragraph changes. In our style, we made the color of our paragraph text red.

While some prefer Sveltes simple approach of keeping code, markup, and styling in one place, it can often be seen as old-fashioned, and, depending on the project, Vues modern MVVM design pattern may be more preferable.

Vue does have an upper hand when it comes to community, user base, and support. Since Sveltes ecosystem is still growing, its users dont have the resources, open source tools, plugins, and community support that Vue developers enjoy.

Overall, both frameworks are considered easy to learn, have excellent documentation, and only require a basic knowledge of JavaScript to adopt.

However, Sveltes capabilities work seamlessly together to improve performance compared to Vue, with shorter loading times, greater memory space, and overall lightness.

Vue.js vs. Riot.js

Riot.js prides itself as a light and simple UI library that helps developers hit the ground running when creating elegant UIs for their applications.

Much like React, users can create custom tags in Riot. This is one of the librarys selling points because developers can:

  • Create components like headers, navigation bars, buttons, and cards with HTML and JavaScript
  • Wrap the components in elements that can be uniquely named for readability
  • Reuse the components indefinitely

Another advantage of using Riot is its size. It advertises itself as a minimalistic framework, providing the bare minimum needed to create a frontend project. Since there are fewer features in this framework compared to Vue, there is less to learn and it loads quickly in browsers.

Instead of the MVVM pattern that Vue uses, Riot uses the Model-View-Presenter (MVP) pattern. The model and the view work similarly to Vues model and view, but, in place of the view model layer, Riot uses a presenter layer to transfer data from the model to the view and vice versa.

One major difference between Vue and Riot is that while Vue uses a virtual DOM to render an apps UI, Riot employs expressions binding, similar to AngularJS. This means that every time a change is made to the code, it goes to the DOM tree and updates the nodes.

Expressions binding is beneficial for small and medium-sized apps but can cause performance issues for larger apps.

One big advantage Vue has over Riot, however, is its community. Riot hasnt been widely adopted yet, while Vue has been adopted by more mainstream companies and developers.

Vue.js vs. Hyperapp

Hyperapp is a super-lightweight framework for creating application frontends. Its total size is about 1KB, which boots up faster and requires less memory than Vue, an advantage that is highlighted when an app runs on low-end devices.

One similarity between these frameworks is that they both use a virtual DOM.

If you are building a complex app, Vues robust built-in features and community would serve you best. However, if you are looking for a framework that prioritizes simplicity with a straightforward API, you should give Hyperapp a try.

Similar to React, Hyperapp supports JSX and allows developers to create reusable components to use with other frameworks. Note that when using JSX in Hyperapp, you must convert the JSX code into function calls with a compiler because browsers cannot interpret JSX.

Compared to Vue, Hyperapps simplicity makes it easy to adopt. It encourages immutability and is less prone to errors than mutability, which Vue promotes.

Like the other frameworks weve looked at so far, Hyperapp is not very popular. However, its small community actively works to improve the framework. At the time of this post, Hyperapp does not have a website and its documentation is not nearly as detailed as Vues. To learn more about how Hyperapp works, check out this simple tutorial that its creators developed.

Vue.js vs. Alpine.js

Its easy to get started building a project with Alpine. There are no installations required, and all you must include is its library in a project to start using it:

<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js" defer></script>

Theres no need for complex build tools, bundlers, and package managers.

While Vue provides developers with a CDN as well, users cannot use single-file components. For large-sized Vue applications, its advisable to install it via npm.

One great advantage of Alpine is that it is lightweight, making it unlikely that users experience any speed and performance issues. Its heavily inspired by Tailwind CSS because users can use JavaScript directly on the HTML markup using classes.

Alpine is also newer than jQuery, so its approach to manipulating the DOM is more modern. Unlike Vue, with its virtual DOM, Alpine makes direct changes to the real DOM while building an application.

In terms of syntax, Alpine is very similar to Vue an intentional move by its creator, Caleb Porzio. The syntax comes with 14 directives to sprinkle JavaScript into the HTML:

x-datax-initx-showx-bindx-onx-ifx-forx-modelx-textx-htmlx-refx-transitionx-spreadx-cloak

Check out this guide to learn how to use these Alpine directives.

Alpine is the perfect alternative for projects that Vue would be too heavy for, such as simple applications that only require a few functionalities.

Conclusion

Weve taken a closer look at some of the new JavaScript frameworks that are growing rapidly, one day possibly posing strong competition to established frameworks like Vue.

It is important to note that this post was not written to present any framework as better than Vue, rather it was written to expose readers to some lesser-known frameworks that might serve different needs, like lightness and simplicity.

Check out these new frameworks and try using them in subsequent projects to see firsthand the advantages they present.

Experience your Vue apps exactly how a user does

Debugging Vue.js applications can be difficult, especially when there are dozens, if not hundreds of mutations during a user session. If youre interested in monitoring and tracking Vue mutations for all of your users in production, try LogRocket.

LogRocket Dashboard Free Trial Banner

LogRocket is like a DVR for web apps, recording literally everything that happens in your Vue apps including network requests, JavaScript errors, performance problems, and much more. Instead of guessing why problems happen, you can aggregate and report on what state your application was in when an issue occurred.

The LogRocket Vuex plugin logs Vuex mutations to the LogRocket console, giving you context around what led to an error, and what state the application was in when an issue occurred.

Modernize how you debug your Vue apps start monitoring for free.


Original Link: https://dev.to/logrocket/comparing-vue-js-to-new-javascript-frameworks-15hn

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To