Reduce load times
See original GitHub issueThe goal here is to optimize load time for a fresh session, i.e. navigating to https://popcode.org
without having been recently logged in, no gist or snapshot URL, etc.
- Investigate lodash’s contribution to bundle size—seems like we’re not getting the benefits of a la carte module loading. Should we use the a la carte packages instead?
- Replace or trim down
moment
- Replace or trim down
text-encoding
- Asynchronously load libraries (e.g. the inlined copy of jQuery that’s used when it’s enabled for a project)
- Asynchronously load vendor code that isn’t required to bootstrap a fresh session (e.g. GitHub, Firebase clients)
- Vendor split to improve cacheability
Webpack visualizer is a great tool for finding the worst offenders in our bundle size.
Issue Analytics
- State:
- Created 7 years ago
- Comments:14 (14 by maintainers)
Top Results From Across the Web
9 Quick Ways to Improve Page Loading Speed
1. Choose a performance-optimized hosting solution. · 2. Compress and optimize your images. · 3. Reduce your redirects. · 4. Cache your web...
Read more >10 Tips for Decreasing Web Page Load Times
10 Tips for Decreasing Web Page Load Times · 1. Check the Current Speed of the Website · 2. Optimize Your Images ·...
Read more >9 Ways to Improve Page Load Times with Website Design ...
If you'd like to avoid that with website design for law firms, try using these tips to minimize load times and improve performance....
Read more >How we reduced load times by 1410%%: tips and takeaways
Studies showed that 1 second delay means a 7% reduction in conversions. Decreasing web page load times is key for user experience, conversion...
Read more >Fast load times - web.dev
Fast load times ... Lazy-load images and video ... Use Imagemin to compress images · Replace animated GIFs with video for faster page...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Leaving this here for later:
http://webpackmonitor.com/
@outoftime we already use the *deep breath* inline-chunk-manifest-html-webpack-plugin for this!