How to Install Fider on Windows 10
Fider is a free and open source platform that enables users to collect valuable feedback from their customers or audience. Here's how you can install Fider on Windows 10:
Prerequisites
Before you start, you need to:
- Have NodeJS version 12.16 or higher installed on your Windows machine. You can download the latest version of NodeJS from here.
- Have Git installed on your Windows machine. You can download Git from here.
Installation
Open your Git Bash shell and navigate to the directory where you want to install Fider.
Clone the Fider repository by running the following command in your Git Bash shell:
git clone https://github.com/getfider/fider.gitNavigate to the Fider directory by running the following command:
cd fiderInstall the required dependencies by running the following command:
npm installThis may take a few minutes.
Copy the
config.sample.ymlfile and rename it toconfig.ymlby running the following command:cp config.sample.yml config.ymlOpen the
config.ymlfile and update theAPP_URLfield to reflect the URL at which you want Fider to be accessible. For example, if you want to access Fider athttp://localhost:3000, set theAPP_URLfield tohttp://localhost:3000.Start Fider by running the following command:
npm startYou should now see the following message in your Git Bash shell:
Fider is ready! URL: http://localhost:3000You can now access Fider by opening a web browser and navigating to the URL specified above.
Congratulations! You have successfully installed Fider on Windows 10.