GitXplorerGitXplorer
f

hermes

public
9696 stars
621 forks
172 issues

Commits

List of commits on branch main.
Unverified
4796f022eb882e3a5e70960fad5efa647da3a663

Deploy 0.246.0 to xplat + www

committed 2 days ago
Unverified
a75e14a1d485521a2cda1baad86944e4de86e5c2

fix: signDisplay plus sign behaviour fixed for NumberFormat (#1483)

sshubhamguptadream11 committed 2 days ago
Unverified
2ca5da296ae92b4557beec658ac60cadb76f2461

Don't allow newline after async in method property

committed 3 days ago
Unverified
649ceaa4c8b2ed331251152ccb7fcee07f19fc4c

Harden the trace intepreter so it doesn't access records that don't exist.

committed 10 days ago
Unverified
c4767b0784badb1cbcfcd98aab9fb6f9481d5abb

Update create-tag.yml for Hermes (#1514)

ccortinico committed 10 days ago
Unverified
db6d12e202e15f7a446d8848d6ca8f7abb3cfb32

JSError: look for stack data in the prototype chain

committed 11 days ago

README

The README file for this repository.

Hermes JS Engine

MIT license npm version Fuzzing Status PRs Welcome Hermes logo - large H with wings

Hermes is a JavaScript engine optimized for fast start-up of React Native apps. It features ahead-of-time static optimization and compact bytecode.

If you're only interested in using pre-built Hermes in a new or existing React Native app, you do not need to follow this guide or have direct access to the Hermes source. Instead, just follow these instructions to enable Hermes.

Noted that each Hermes release is aimed at a specific RN version. The rule of thumb is to always follow Hermes releases strictly. Version mismatch can result in instant crash of your apps in the worst case scenario.

If you want to know how to build and hack on Hermes directly, and/or integrate Hermes built from source into a React Native app then read on.

The instructions here very briefly cover steps to build the Hermes CLI. They assume you have typical native development tools setup for your OS, and support for cmake and Ninja. For more details of required dependencies, building Hermes with different options, etc. follow these links instead:

To build a local debug version of the Hermes CLI tools the following steps should get you started on macOS/Linux:

mkdir hermes_workingdir
cd hermes_workingdir
git clone https://github.com/facebook/hermes.git
cmake -S hermes -B build -G Ninja
cmake --build ./build

Or if you're using Windows, the following should get you going in a Git Bash shell:

mkdir hermes_workingdir
cd hermes_workingdir
git -c core.autocrlf=false clone https://github.com/facebook/hermes.git
cmake -S hermes -B build -G 'Visual Studio 16 2019' -A x64
cmake --build ./build

You will now be in a directory with the output of building Hermes into CLI tools. From here you can run a piece of JavaScript as follows:

echo "'use strict'; function hello() { print('Hello World'); } hello();" | ./bin/hermes

Contributing

The main purpose of this repository is to continue to evolve Hermes, making it faster and more efficient. We are grateful to the community for contributing bugfixes and improvements. Read below to learn how you can take part in improving Hermes.

Code of Conduct

Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.

Contributing Guide

Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to Hermes.

License

Hermes is MIT licensed.