35
tahnik
7y

Ah finally, the moment when being a web developer is full of joy.

☑️ Server-side rendering
☑️ Inline critical css
☑️ Add progressive image loading
☑️ Minify everything
☑️ Automate release process in CI
☑️ Lint everything

Now that the strucutre is up, time to code the actual website. This is gonna be good!

Comments
  • 11
    This is like... web devlopment: 80% setup, 25% code
  • 7
    80 percent of the time it works every time.
  • 5
    Server side "rendering"?
  • 2
    @Kimmax Perhaps generating images using PHP, which I understand has a fairly extensive image library, although I have never used it.
  • 8
    @Kimmax in a single page applications, your page is rendered after the script has been loaded completely. This takes some time and can be bad for SEO and users.

    What you can do, is use server side rendering to render part of your html (your home page for example) from the server and send it to the user along with your script. This time, your home page is already rendered so it won't have to wait for the script to be loaded completely to show the page.
  • 0
    Best. Feeling. Ever
  • 2
    @tahnik ah got it. Thanks
  • 1
    You just told my story bro..
Add Comment