

Hasty Treat - 5 More Things That Make Your Site Slow
Apr 20, 2020
Discover the hidden culprits behind slow websites in this engaging discussion! Learn how excessive JavaScript slows you down and why code splitting is crucial. Find out the benefits of bundling and compressing your code to enhance performance. Explore asynchronous loading techniques to keep your site fast and responsive. Plus, uncover the importance of database indexing for efficient lookups. Packed with practical tips, this talk is a must-listen for developers seeking to optimize their web applications!
AI Snips
Chapters
Transcript
Episode notes
Shipping Less JS
- Ship less JavaScript to improve website performance.
- Analyze dependencies and use fewer libraries to reduce bundle size.
Unexpected Emoji Bloat
- Wes once included a slug library that added 2MB of emoji descriptions.
- He advises checking dependencies for unintended client-side inclusions.
Bundle Your Code
- Always bundle your code for production using tools like Webpack or Parcel.
- Bundling minifies and combines files, reducing requests and improving load times.