https://github.com/amirho1/javascript-runtime-environment
JavaScript-Runtime-Environment simulator
https://github.com/amirho1/javascript-runtime-environment
Last synced: 2 months ago
JSON representation
JavaScript-Runtime-Environment simulator
- Host: GitHub
- URL: https://github.com/amirho1/javascript-runtime-environment
- Owner: amirho1
- Created: 2025-01-14T12:06:19.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-02-09T16:15:49.000Z (4 months ago)
- Last Synced: 2025-02-09T16:33:31.906Z (4 months ago)
- Language: TypeScript
- Size: 109 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Javascript Runtime visualization
## [Demo](https://amirho1.github.io/JavaScript-Runtime-Environment/)
This is a fun project that I did to learn behind the scene of javascript and it's limited if you run it, it will parse and iterate the code and show you step by step what will happen when you call async, and sync functions
## Clone it
```sh
git clone https://github.com/amirho1/JavaScript-Runtime-Environment.git
```### Install and Run
```sh
bun install
```#### Run
```sh
bun dev
```open your http://localhost:3000 you will see the project
**this runtime only handles `async await`, `function`, and `setTimeout` it was written for educational purpose**