UPD October 2025
In addition to our own CDN, the free version of the Webix library is also available via jsDelivr.
jsDelivr automatically fetches the official Webix package from npm, so you can easily connect it in your projects:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/webix/webix.css">
This provides even more flexibility and global performance thanks to jsDelivr’s distributed infrastructure.
___
To start using Webix library you don’t need to download the package from our website and then unpack it. You may include two webix files from the Internet by just setting links to CDN.
CDN can offer a performance and availability benefits by hosting Webix on servers all over the world. The advantage is that if the visitor to your webpage has already downloaded a copy of Webix from the same CDN, it won’t have to be re-downloaded.

Now if the end user works, for example, with several apps that are built on the basis of Webix, the loading speed of the second app will load much faster than before, thanks to CDN caching. When your user works with the first app the webix.js and webix.css files are downloaded into cache and stored there. Thus, when a user checks the second app, the browser won’t need to re-download Webix files as they are already in the cache.
Webix CDN is based on Amazon CloudFront CDN whose servers are located in Europe (United Kingdom, Ireland, The Netherlands, Germany, Spain), Asia (Hong Kong, Singapore, Japan, Taiwan and India), Australia, South America, as well as in the United States.
To use the Webix CDN, just refer to the file directly from http://cdn.webix.com like in the code snippet below:
<script type="text/javascript" charset="utf-8">
... // here your app will "take shelter"
</script>
If you want to have a more secure way to get the library, you can use “https” connection instead of “http” in the same way:
In case you need to get not the latest Webix version but an older one, you can replace this code lines:
with the lines of code that include the necessary number of version, e.g.:
As you can see, you no longer need to download and unzip the library locally, which significantly saves your time. Moreover,the use of Webix CDN will make your web apps run faster.
If you are a commercial Webix user and want to use the advantages of CDN, please write to us via a contact form and describe your request in details.
Check the React UI components from our partners SVAR.



