Download an Entire Webpage with JavaScript, Including Inline CSS
https://medium.com/@neog.anupal101/download-an-entire-webpage-with-javascript-including-inline-css-d38866544c5a
#coding
#js
https://medium.com/@neog.anupal101/download-an-entire-webpage-with-javascript-including-inline-css-d38866544c5a
#coding
#js
Medium
Download an Entire Webpage with JavaScript, Including Inline CSS
Have you ever wanted to download an entire webpage, including its CSS, with a simple click? With the power of JavaScript, you can create a…
Scaling WebSocket Connections using Shared Workers
https://dev.to/ayushgp/scaling-websocket-connections-using-shared-workers-14mj
#coding
#js
#websocket
https://dev.to/ayushgp/scaling-websocket-connections-using-shared-workers-14mj
#coding
#js
#websocket
DEV Community
Scaling WebSocket Connections using Shared Workers
Use SharedWorkers to reduce your server load by managing tabs on same client on one socket connection.
AbortController для отмены запросов при смене страницы (SPA)
https://habr.com/ru/articles/746740/
#coding
#js
https://habr.com/ru/articles/746740/
#coding
#js
Хабр
AbortController для отмены запросов при смене страницы (SPA)
Не так давно я столкнулся с проблемой, что при плохом интернете некоторые запросы к серверу идут так долго, что пользователь успевает перейти на другую страницу, пока запрос еще не завершился. И этот...
Sharing WebSocket Connections between Browser Tabs and Windows
https://brightinventions.pl/blog/sharing-websocket-connections-between-browser-tabs-and-windows/
#coding
#js
https://brightinventions.pl/blog/sharing-websocket-connections-between-browser-tabs-and-windows/
#coding
#js
Bright Inventions
Sharing WebSocket Connections between Browser Tabs and Windows
WebSocket connections are like special communication channels that allow web browsers and servers to talk to each other in real-time…
Text compression & Code splitting & Modern image formats - Performance optimization
https://dev.to/mitchell_cheng/text-compression-code-splitting-modern-image-formats-performance-optimization-5gi8
#coding
#js
#refactoring
https://dev.to/mitchell_cheng/text-compression-code-splitting-modern-image-formats-performance-optimization-5gi8
#coding
#js
#refactoring
DEV Community
Text compression & Code splitting & Modern image formats - Performance optimization
I tried the following to optimize my side project performance: text compression code...
Performance Optimization Techniques for Vue.js Applications
https://certificates.dev/blog/performance-optimization-techniques-for-vuejs-applications
#coding
#js
#refactoring
https://certificates.dev/blog/performance-optimization-techniques-for-vuejs-applications
#coding
#js
#refactoring
certificates.dev
Performance Optimization Techniques for Vue.js Applications
Make your websites/apps fast with strategies like lazy loading, stable prop design, virtual lists, v-once and v-memo, plus more!
Optimizing rendering in Vue
https://blog.logrocket.com/optimizing-rendering-vue/
#coding
#js
#refactoring
https://blog.logrocket.com/optimizing-rendering-vue/
#coding
#js
#refactoring
LogRocket Blog
Optimizing rendering in Vue - LogRocket Blog
This guide covers methods for enhancing rendering speed in Vue.js apps using functions and techniques like v-once, v-for, v-if, and v-show.