Best of Vue.jsOctober 2023

  1. 1
    Article
    Avatar of communityCommunity Picks·2y

    I switched from React to Vue

    Vue is easier to use and more intuitive than React. It has an awesome ecosystem with well-designed libraries like Pinia and VueUse. State management in Vue is simpler and more straightforward compared to React.

  2. 2
    Article
    Avatar of asayerasayer·3y

    Optimize Vue with Web Workers

    Learn how to optimize Vue.js applications with Web Workers, a modern web technology that allows JavaScript to run in the background. Web Workers provide non-blocking operations, optimal CPU utilization, and scalability for web applications. By offloading intensive computations to a separate thread, Vue.js applications can achieve enhanced performance, improved user experience, and asynchronous operations. However, Web Workers have limitations such as lack of access to the DOM and limited access to certain Web APIs.

  3. 3
    Article
    Avatar of itnextITNEXT·3y

    Getting started with Supabase

    Supabase is a back-end-as-a-service (BaaS) that allows you to set up a database and interact with it without writing APIs. You can fetch all records from the 'drinks' table in Supabase by using the Supabase client and selecting from the 'drinks' table.

  4. 4
    Article
    Avatar of asayerasayer·2y

    Comparing frameworks: Solid vs. Vue

    Solid.js and Vue.js are JavaScript frameworks that have distinct methodologies, features, and performance. Solid.js prioritizes reactivity and performance, while Vue.js focuses on approachable versatility. Solid.js performs better in DOM manipulation and is more memory-efficient. Vue.js has a beginner-friendly learning curve and a larger developer community. Solid.js is ideal for performance-driven applications, while Vue.js is great for rapid prototyping and versatile applications.

  5. 5
    Article
    Avatar of hackernoonHacker Noon·3y

    Mastering Vue.js Lifecycle Hooks: A Comprehensive Guide with Examples

    Mastering Vue.js Lifecycle Hooks: A Comprehensive Guide with Examples. We'll dive deep into Vue's lifecycle hooks, exploring what they are, how they work, and providing practical examples to help you grasp their usage effectively.