Best of Vue.jsOctober 2022

  1. 1
    Article
    Avatar of communityCommunity Picks·3y

    Nuxt 3 vs SvelteKit

    Nuxt 3 vs SvelteKit for ryantoken.com v3 has been in Release Candidate mode since April of 2022 (about 6 months at time of writing) It still isn't done and is missing some key features for me to be fully satisfied with it. Nuxt will automatically configure the routing for you.

  2. 2
    Article
    Avatar of communityCommunity Picks·3y

    Server Side Rendering (SSR) vs. Client Side Rendering (CSR) vs. Pre-Rendering using Static Site Generators (SSG) and client-side hydration.

    A comprehensive guide to the concepts of Traditional Server Side Rendering (SSR), Static Rendering, SSR at build time, and Static Site Generators (SSG) and client-side hydration. In SSR the HTML components of the webpage are generated on the server-side, and then returned to the browser. In Client side rendering (CSR) the HTML parts of the website is generated in the browser. The browser must fully download the JS bundle.

  3. 3
    Article
    Avatar of telerikTelerik·4y

    Popular VS Code Extensions for Vue.js & Nuxt.js Developers

    Vue 2/Nuxt 2 (AKA Vue Language Features) is a language support extension built for Vue, Vitepress and petite-vue. It fills many holes Vetur has regarding TypeScript and provides features like type checking, completion, renaming and refactoring. Vue Discovery (Vue Discovery) discovers Vue components in your project.

  4. 4
    Article
    Avatar of phProduct Hunt·3y

    LocatorJS DevTool - Click on a component in browser to go to code in your editor

    LocatorJS is a browser extension and/or JavaScript library. You can click on any component in the browser to open its code in your IDE.

  5. 5
    Article
    Avatar of thisdotThis Dot·3y

    Storybook: Can Your Next Project Benefit from It?

    Storybook is a tool for developing UIs that allows you to work on one component at a time. It can take up a lot of time to maintain and properly set up. It takes team commitment to keep it updated and ensure everything still works. There are plugins that can be added to make certain feature work.

  6. 6
    Article
    Avatar of communityCommunity Picks·3y

    Let’s talk about web components

    Web components are a collection of technologies that work together to deliver reusable UI components to the web. Web components handle the presentational aspects of a component, but are intentionally dumb. The overwhelming majority of web components don’t need to be web components.