This repository was archived by the owner on Jun 27, 2024. It is now read-only.

Description
Issue Description:
When attempting to set up the development environment locally on a laptop with Windows 10 Pro, I encountered an issue with installing the event-loop-stats and isolated-vm packages using Yarn. This prevented the project from running with the yarn dsv and yarn dev commands.
Steps to Reproduce:
- Clone the repository to a local machine with Windows 10.
- Run the command
yarn install to install dependencies.
- Ensure that the necessary system build dependencies are installed and active.
Fix:
To resolve the issue, I had to install build tools and other dependencies. I performed the following steps (on Linux, but similar steps may be required on Windows via MinGW or other tools):
sudo apt install build-essential
sudo apt install python3
sudo apt install python3-pip
sudo pip3 install --upgrade virtualenv
sudo apt install nodejs-dev
sudo apt install libssl1.0-dev
After this, I was able to successfully build and run the project.
Request:
It would be helpful to include the necessary steps for installing dependencies for various operating systems (especially Windows) in the documentation. This will help future developers avoid similar issues.
Thank you!
I hope this helps!