| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
The link to github.com/petkaantonov/bluebird/wiki/Optimization-killers was misleading — it pointed to an outdated Bluebird Promise library wiki page about V8 optimization killers that is no longer maintained or accurate for modern JavaScript engines. Replace with a general recommendation to use browser developer tools and performance profiling to identify real bottlenecks, which is more actionable and up-to-date advice. Closes ryanmcdermott#719
| Back | FazBrowse Home | New Git URL |
Summary
Removes a misleading external link from the "Don't over-optimize" section and replaces it with more actionable, timeless advice.
Problem
The section linked to github.com/petkaantonov/bluebird/wiki/Optimization-killers — a Bluebird Promise library wiki page about V8 optimization killers. This link is problematic because:
Change
Replace the broken external link with a recommendation to use browser developer tools and performance profiling — the standard, modern approach to identifying real performance bottlenecks.
Before:
After:
Closes #719