Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/facebook/hhvm
A virtual machine for executing programs written in Hack.
https://github.com/facebook/hhvm
hack hacklang hhvm php
Last synced: about 1 month ago
JSON representation
A virtual machine for executing programs written in Hack.
- Host: GitHub
- URL: https://github.com/facebook/hhvm
- Owner: facebook
- License: other
- Created: 2010-01-02T01:17:06.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2024-04-13T17:43:12.000Z (8 months ago)
- Last Synced: 2024-04-13T21:19:58.481Z (8 months ago)
- Topics: hack, hacklang, hhvm, php
- Language: C++
- Homepage: https://hhvm.com
- Size: 678 MB
- Stars: 17,976
- Watchers: 1,002
- Forks: 2,980
- Open Issues: 538
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.PHP
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-php - HHVM - A Virtual Machine, Runtime and JIT for PHP by Facebook. (Configuration / Virtual Machines)
- awesome-php-cn - HHVM - 一个虚拟机,为PHP运行时和JIT Facebook. (配置 Configuration / 虚拟机 Virtual Machines and Compilers)
- awesome-projects - HHVM - A Virtual Machine, Runtime and JIT for PHP by Facebook. (Configuration / Virtual Machines)
- AwesomeCppGameDev - hhvm
- awesome-php - HHVM - A Virtual Machine, Runtime and JIT for PHP by Facebook. (Configuration / Virtual Machines)
- StarryDivineSky - facebook/hhvm
- awesome-repositories - facebook/hhvm - A virtual machine for executing programs written in Hack. (C++)
README
# HHVM
[HHVM page](https://hhvm.com) |
[HHVM documentation](https://docs.hhvm.com/hhvm/) |
[Hacklang page](http://hacklang.org) |
[General group](https://www.facebook.com/groups/hhvm.general/) |
[Dev group](https://www.facebook.com/groups/hhvm.dev/) |
[Twitter](https://twitter.com/HipHopVM)HHVM is an open-source virtual machine designed for executing programs written in [Hack](http://hacklang.org). HHVM uses a just-in-time (JIT) compilation approach to achieve superior performance while maintaining amazing development flexibility.
HHVM should be used together with a webserver like the built in, easy to deploy [Proxygen](https://docs.hhvm.com/hhvm/basic-usage/proxygen), or a [FastCGI](https://docs.hhvm.com/hhvm/advanced-usage/fastCGI)-based webserver on top of nginx or Apache.
## Installing
If you're new, try our [getting started guide](https://docs.hhvm.com/hhvm/getting-started/getting-started).
You can install a [prebuilt package](https://docs.hhvm.com/hhvm/installation/introduction#prebuilt-packages) or [compile from source](https://docs.hhvm.com/hhvm/installation/building-from-source).
## Running
You can run standalone programs just by passing them to hhvm: `hhvm example.hack`.
If you want to host a website:
* Install your favorite webserver. [Proxygen](https://docs.hhvm.com/hhvm/basic-usage/proxygen) is built into HHVM, fast and easy to deploy.
* Install our [package](https://docs.hhvm.com/hhvm/installation/introduction#prebuilt-packages)
* Start your webserver
* Run `sudo /etc/init.d/hhvm start`
* Visit your site at `http://.../main.hack`Our [getting started guide](https://docs.hhvm.com/hhvm/getting-started/getting-started) provides a slightly more detailed introduction as well as links to more information.
## Contributing
We'd love to have your help in making HHVM better. If you're interested, please read our [guide to contributing](CONTRIBUTING.md).
## License
HHVM is licensed under the PHP and Zend licenses except as otherwise noted.
The [Hack typechecker](hphp/hack) is licensed under the MIT [License](hphp/hack/LICENSE) except as otherwise noted.
The [Hack Standard Library](hphp/hsl) is licensed under the MIT [License](hphp/hsl/LICENSE) except as otherwise noted.
## Reporting Crashes
See [Reporting Crashes](https://github.com/facebook/hhvm/wiki/Reporting-Crashes) for helpful tips on how to report crashes in an actionable manner.
## Security
For information on reporting security vulnerabilities in HHVM, see [SECURITY.md](SECURITY.md).
## FAQ
Our [user FAQ](https://docs.hhvm.com/hhvm/FAQ/faq) has answers to many common questions about HHVM, from [general questions](https://docs.hhvm.com/hhvm/FAQ/faq#general) to questions geared towards those that want to [use](https://docs.hhvm.com/hhvm/FAQ/faq#users).
There is also a FAQ for [contributors](https://github.com/facebook/hhvm/wiki/FAQ#contributors) to HHVM.