https://github.com/gengjiawen/v8-perfs
https://github.com/gengjiawen/v8-perfs
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gengjiawen/v8-perfs
- Owner: gengjiawen
- Created: 2018-11-11T07:04:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-11T13:36:07.000Z (over 6 years ago)
- Last Synced: 2025-02-06T11:01:25.976Z (4 months ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# V8 perf vs other language
[](https://circleci.com/gh/gengjiawen/v8-perfs)
Inspired by https://www.youtube.com/watch?v=UJPdhx5zTaw.
Original see this in https://medium.com/dailyjs/how-do-i-get-started-with-v8-development-17e976ebe4af.## Perf Result
| version | time |
| ------------------------- | ---- |
| nodejs 11 (v8 7.0.276.32) | 1.52 |
| gcc-8 | 1.68 |
| gcc with O3 | 0.99 |
| go 1.11 | 4.04 |You can view nodejs version using (https://stackoverflow.com/a/51470389/1713757)
```bash
docker run --rm -it node:11 bash -c "node -p process.versions"
```