Setup Windows
Here we describe the setup for Windows.
Installing MySpeed
Download MySpeed
Download the latest version of MySpeed from the releases page. Download the filemyspeed-windows-x64.exe.Place the file
Move the downloaded file to a folder of your choice (e.g.,C:\MySpeed). Rename it tomyspeed.exefor convenience.Test your installation
Open PowerShell or Command Prompt in the folder where you placed the file (Shift + Right-click > "Open PowerShell window here").
Run the executable:powershell.\myspeed.exeIf everything runs successfully, you did everything right! Congratulations. 😃
MySpeed is now available on port 5216. Open http://localhost:5216 in your browser.
Automatic startup using the autostart folder in Windows
Open the autostart folder in windows
Press both keys (Windows+R) simultaneously on your keyboard until a Run dialog appears. Then type%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startupand pressEnter.Create a shortcut
Right-click in the folder and selectNew>Shortcut. Browse to yourmyspeed.exefile and create the shortcut.If everything worked, MySpeed should now start automatically when the system is started.
Alternative: Install from source code
Attention
This process installs the latest development version of MySpeed. Errors may occur.
Download Deno
To build MySpeed from source, you need Deno. Open PowerShell and run:powershellirm https://deno.land/install.ps1 | iexDownload MySpeed source
Clone the repository or download the source code from GitHub.Install dependencies and build
powershelldeno install cd client && npm install && npm run build && cd .. && move client\build buildStart MySpeed
powershelldeno run --allow-all server/index.js
