Best of Vue.jsSeptember 2023

  1. 1
    Article
    Avatar of devtoDEV·3y

    Bun hype. How we learned nothing from Yarn

    Yarn and Bun went off to create their own competing technology. Both sold themselves on being way faster. Both went in with the goal of splitting the ecosystem. Both announced that they were officially v1.0 and ready for production!...while not actually supporting Windows. In 2023, npm is still faster than Yarn.

  2. 2
    Article
    Avatar of communityCommunity Picks·3y

    NueJS

    Nue is a powerful React, Vue, Next.js, Vite, and Astro alternative to React/Vue. It takes inspiration from Vue 2.0 and Riot.js. All projects will be released under the MIT license.

  3. 3
    Article
    Avatar of itnextITNEXT·3y

    Ok, Astro is the best web framework in 2023, here’s why

    Astro is the best web framework in 2023, here’s why. Astro is a web framework that is based on JavaScript and generates no JavaScript by default. It executes your JS code at build time, like SSR frameworks do, but it does no hydration, because most content-based website do not need JS.

  4. 4
    Article
    Avatar of devtoDEV·3y

    Building a Game with Phaser

    Building a Game with Phaser - DEV Community Welcome to Part Two of this four-part series on building a mobile game using open source technologies. We'll be using Phaser, along with Ionic, Capacitor, and Vue. The source code for this tutorial is here, and I'll reference specific commits throughout.

  5. 5
    Article
    Avatar of devtoDEV·3y

    Astro Framework - Resources & Free Starters

    Astro is HTML-first, which means it outputs zero JavaScript by default and supports both static site generation (SSG) and server-side rendering (SSR) Astro allows the use of components from different frameworks like Svelte, SolidJS, React, and Vue, within the same project.

  6. 6
    Article
    Avatar of css-irlCSS {IRL}·3y

    Reactivity in Vanilla Javascript

    The Vue docs have a great explanation of reactivity in Vanilla Javascript. How hard would it be to build an app with these techniques in vanilla JS? To my mind it would be very hard. JS frameworks largely exist to take away some of the pain of this kind of thing, and actually use these techniques under the hood.