From 300b602f928954060d61330a256f64bedea7eb5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xuan=20Huang=20=28=E9=BB=84=E7=8E=84=29?= Date: Wed, 25 Oct 2023 06:27:35 -0700 Subject: [PATCH] Fix a backlink on hermes-as-the-default (#3899) --- website/blog/2022-07-08-hermes-as-the-default.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/blog/2022-07-08-hermes-as-the-default.md b/website/blog/2022-07-08-hermes-as-the-default.md index be3574bdc84..c257892afea 100644 --- a/website/blog/2022-07-08-hermes-as-the-default.md +++ b/website/blog/2022-07-08-hermes-as-the-default.md @@ -6,7 +6,7 @@ tags: [announcement, release] # Hermes As the Default Blogpost -Last October, we [announced](https://engineering.fb.com/2019/07/12/android/hermes/) that we had started work towards **making** **Hermes the default engine for all React Native apps**. +Last October, we [announced](blog/2021/10/26/toward-hermes-being-the-default) that we had started work towards **making** **Hermes the default engine for all React Native apps**. Hermes has provided a lot of value to React Native inside of Meta, and we believe the open-source community will benefit as well. Hermes is designed for resource constrained devices and optimizes for start up, app size, and memory consumption. One key difference between Hermes and other JS engines is its ability to compile JavaScript source code to bytecode ahead of time. This precompiled bytecode is bundled inside the binary, and saves the interpreter from having to perform this expensive step during app startup.