From 192f4d4d1df4d56b215e23ec9a1aec2c99e227af Mon Sep 17 00:00:00 2001 From: Andre Wiggins <459878+andrewiggins@users.noreply.github.com> Date: Mon, 2 Oct 2023 20:49:33 -0700 Subject: [PATCH] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 79d030b..cb38e89 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ View deoptimizations of your JavaScript in V8 ![Sample image of the results of running v8-deopt-viewer](examples/v8-deopt-webapp.png) +Also consider checking out [Deopt Explorer](https://devblogs.microsoft.com/typescript/introducing-deopt-explorer/) from the TypeScript team! + ## You may not need this tool... V8 only optimizes code that runs repeatedly. Often for websites this code is your framework's code and not your app code. If you are looking to improve your website's performance, first check out tools like [Lighthouse](https://developers.google.com/web/tools/lighthouse/) or [webhint](https://webhint.io/), and follow other general website performance guidance.