Giter VIP home page Giter VIP logo

Comments (7)

purge avatar purge commented on September 21, 2024 8

i've just converted a complex next.js project to this (I dislike nexts href/to, getInitialProps ,slow page changes & build id hashing). I am very happy to report that all of these have been resolved using react-static and it's much more 'reacty'. The conversion was a doddle too.

from react-static.

tannerlinsley avatar tannerlinsley commented on September 21, 2024 5

https://medium.com/@tannerlinsley/️-introducing-react-static-a-progressive-static-site-framework-for-react-3470d2a51ebc

from react-static.

tannerlinsley avatar tannerlinsley commented on September 21, 2024 1

I think it would be beneficial to have a section on the differences, though since they are conceptually different on some levels, I'm not sure a comparison table would do it justice.

One of the main differences to next is that react-static behaves like a regular react app. So you don't build your pages using js files in a folder, you build them using react-router.

The other very large difference is that react-router only exports an HTML file and JSON file for each route, both of which are used at the most opportune moment (HTML for first-load, and JSON for subsequent navigation) for speed and low bandwidth. Next.js is much more bloated, since for every page, it exports an HTML file and . JS bundle containing all of the logic to render the root component. This results in a ton of duplicate code across pages.

Due to the bundle/page patter than next uses, it can become extremely slow to export pages, since webpack is running for every single page. React-static only exports a single bundle that won't grow in size with the amount of dynamic pages that you bring to the table. So exporting is extremely fast.

These are just a few examples. More of them are outlined in the introductory medium article I wrote.

from react-static.

tannerlinsley avatar tannerlinsley commented on September 21, 2024 1

I'll try and put something together this week :)

from react-static.

tannerlinsley avatar tannerlinsley commented on September 21, 2024 1

Going to close this now as I believe the Article is sufficient for this purpose right now.

from react-static.

albinekb avatar albinekb commented on September 21, 2024

Ah, I missed that medium article. Thanks for explaining 👍

I think a section in the readme that outlines this, and links to the medium post or this issue would be 👌 for newcomers like me to understand.

from react-static.

divyenduz avatar divyenduz commented on September 21, 2024

Would be good to link the medium article on this issue?

from react-static.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.