Software Alternatives & Reviews

My journey from Gatsby to SvelteKit

Svelte React Next.js
  1. 1
    Cybernetically enhanced web apps
    Pricing:
    • Open Source
    Svelte is not a library or a framework, it is a compiler. This means that your code is not shipped in combination with packages to a browser, but it gets compiled to something else. This something is shipped to the browser. Because all code gets compiled, the total size decreases, but the performance increases. Besides, it allows you to break away from writing everything inside a JavaScript function, and have its optimized format.

    #Javascript UI Libraries #JavaScript Framework #JS Library 352 social mentions

  2. 2
    A JavaScript library for building user interfaces
    Pricing:
    • Open Source
    React is a JavaScript library that makes it easy to write UIs. As it is a library, your code plus the library is shipped to the browser and executed there. Also, you have to write your HTML (or JSX) inside the return of a function, while other lifecycle information is also encapsulated inside that function. Gatsby is a static site generation (SSG) solution build on top of React, and was used in the previous version of this website. An easy next step would be migrating to Next.js, a static-site rendering (SSR) solution build on React. But then I came across the news of the SvelteKit public beta.

    #Javascript UI Libraries #JS Library #JavaScript Framework 775 social mentions

  3. A small framework for server-rendered universal JavaScript apps
    Pricing:
    • Open Source
    React is a JavaScript library that makes it easy to write UIs. As it is a library, your code plus the library is shipped to the browser and executed there. Also, you have to write your HTML (or JSX) inside the return of a function, while other lifecycle information is also encapsulated inside that function. Gatsby is a static site generation (SSG) solution build on top of React, and was used in the previous version of this website. An easy next step would be migrating to Next.js, a static-site rendering (SSR) solution build on React. But then I came across the news of the SvelteKit public beta.

    #Developer Tools #Web Frameworks #JavaScript Framework 923 social mentions

Discuss: My journey from Gatsby to SvelteKit

Log in or Post with