event loop explorer
v1.9.3
Event Loop Explorer is a tool that helps to understand how JavaScript code is executed in the browser. It visualizes the Call Stack, Web APIs, Tasks, Microtasks, and Render phase.

Feel free to try it here: https://vault-developer.github.io/event-loop-explorer/
If you want to contribute, feel free to fork this repository and create a pull request.
There are a lot of topics in the "Future Plans" section.
Have a question or idea?
Feel free to raise it in our discussions session ?
git clone [email protected]:vault-developer/event-loop-explorer.git
cd event-loop-explorer
yarn install
yarn dev
new Promise((res) => {res(console.log(4))});