Skip to content

Instantly share code, notes, and snippets.

@brschwar
Last active December 7, 2017 16:29
Show Gist options
  • Save brschwar/07f1d894b49243b84f5d7261d6c0063e to your computer and use it in GitHub Desktop.
Save brschwar/07f1d894b49243b84f5d7261d6c0063e to your computer and use it in GitHub Desktop.
Website Performance Topics

References:

Basic Optimization Rules

  • Make fewer HTTP requests
  • Use a Content Delivery Network
  • Add an Expires header
  • Gzip components
  • Put CSS at the top
  • Move scripts to the bottom
  • Avoid CSS expressions
  • Make JavaScript and CSS external
  • Reduce DNS lookups
  • Minify JavaScript
  • Avoid redirects
  • Remove duplicate scripts
  • Configure ETags

optimizing assets (images, scripts, and styles) optimizations specific to scripts optimizations specific to styles

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment