Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/facebook/hermes
A JavaScript engine optimized for running React Native.
https://github.com/facebook/hermes
Last synced: 3 days ago
JSON representation
A JavaScript engine optimized for running React Native.
- Host: GitHub
- URL: https://github.com/facebook/hermes
- Owner: facebook
- License: mit
- Created: 2018-10-22T19:13:00.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T02:23:22.000Z (about 1 month ago)
- Last Synced: 2024-10-29T15:18:56.314Z (about 1 month ago)
- Language: C++
- Homepage: https://hermesengine.dev/
- Size: 97 MB
- Stars: 9,850
- Watchers: 144
- Forks: 630
- Open Issues: 163
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome - hermes - Hermes is a small and lightweight JavaScript engine optimized for running React Native on Android. (C++)
- awesome-repositories - facebook/hermes - A JavaScript engine optimized for running React Native. (C++)
- awesome-github-star - hermes
- awesome-list - hermes
- awesome-hacking-lists - facebook/hermes - A JavaScript engine optimized for running React Native. (C++)
README
# Hermes JS Engine
[![MIT license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/facebook/hermes/blob/HEAD/LICENSE)
[![npm version](https://img.shields.io/npm/v/hermes-engine.svg?style=flat)](https://www.npmjs.com/package/hermes-engine)
[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/hermes.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:hermes)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/facebook/hermes/blob/HEAD/CONTRIBUTING.md)Hermes is a JavaScript engine optimized for fast start-up of [React Native](https://reactnative.dev/) 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](https://reactnative.dev/docs/hermes).
> Noted that each Hermes release is aimed at a specific RN version. The rule of thumb is to always follow [Hermes releases](https://github.com/facebook/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:
* [Building and Running Hermes](doc/BuildingAndRunning.md)
* [Using a custom Hermes build in a React Native app](doc/ReactNativeIntegration.md#using-a-custom-hermes-build-in-a-react-native-app)To build a local debug version of the Hermes CLI tools the following steps should get you started on macOS/Linux:
```shell
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:
```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:
```shell
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](./CODE_OF_CONDUCT.md) that we expect project participants to adhere to. Please read [the full text](https://code.fb.com/codeofconduct) so that you can understand what actions will and will not be tolerated.
### Contributing Guide
Read our [contributing guide](CONTRIBUTING.md) 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](./LICENSE).