How to install FMDX firmware on Windows

FMDX.ORG discussions & support
Post Reply
DXLondon
Site Admin
Posts: 19
Joined: Mon Jun 30, 2025 12:14 am
Has thanked: 1 time
Been thanked: 2 times

How to install FMDX firmware on Windows

Post by DXLondon »

🟢 Installing the FMDX firmware on Windows OS

1. Install node.js:
https://nodejs.org/en

2. Make a folder called FM-DX

3. Download the FM-DX Webserver firmware.
https://github.com/NoobishSVK/fm-dx-web ... s/main.zip

4. Extract the main.zip file in the FM-DX folder you created.

5. Go in to the fm-dx-webserver folder.

6. Click the location bar so your directory is highlighted and type 'cmd'.
This will open up a cmd window.

7. Enter the following (This will install the node.js dependancies):

Code: Select all

npm install
8. Start the web server by entering the following in the cmd window:

Code: Select all

npm run webserver
Note: Once running leave the cmd window open to keep server active.

9. Open your web browser and go to [url]http:/localhost:8080 [/url] to configure your web-server.

🟢 Configuring your audio device on Windows

1. Login to your FM-DX Webserver
[url]http:/localhost:8080/setup [/url]

2. Go to the 'Audio' tab in the main menu on the left hand side.

3. Under the 'Device' card use the drop down menu to select your audio device.

4. Press 💾 save icon in the main menu on the left hand side.

5. reboot your fm-dx webserver using this command in the cmd window:

Code: Select all

service fm-dx-webserver restart
Alternatively you can close the cmd window and re-open it once opened run:

Code: Select all

npm run webserver
Post Reply