top of page

Improve Wix Mobile Site Performance with Browser vs. Backend Rendering

Improve Wix Mobile Site Performance with Browser vs. Backend Rendering

The Wix Wiz

Mar 17, 2023

9

Tags:

Mobile, Speed, Speed site, VELO, JavaScript

In this video, we'll cover how Wix splits the rendering process into two cycles to improve performance, and how the Rendering API can help track code execution and selectively run parts of your code in certain conditions.


We'll start by discussing how Wix splits the rendering process into two cycles, with the first cycle happening server-side and the second cycle happening client-side. If it's not possible to split the rendering process server-side, all rendering happens client-side.



Next, we'll explore how the Rendering API can be used in your page's onReady() event handler to control where your code runs during the rendering process and to prevent code that causes side effects from running twice. We'll also show you how to use the wixWindow module to import the current environment the rendering process is running in, either "backend" when rendering on the server or "browser" when rendering on the client.


In the final part of this tutorial, we'll conduct some experiments to test whether rendering only on the browser can improve page load speed. By rendering only on the client-side, we can reduce the amount of time needed to set up the page on the server, potentially improving the overall speed of the site.

Related videos

Wix ideas.jpg
KDC Marketing
May 10, 2024

21

How to Create Text Marquee With No Code

Wix ideas.jpg
Wixideas
Apr 2, 2024

64

Social Share Buttons for Wix Dynamic Pages

Wix ideas.jpg
The Website Architect
Mar 3, 2024

112

How to Properly Layout A Website

bottom of page