Step 1. Install the script

F Firebase, Syncing and Functions / Shopify Last updated on Updated  May 23, 2019

The sync script is a node js project. It runs on any node enabled environment. 

You can run it locally or on a server. ( Node Server / Hosting is preferred )

https://www.netguru.co/blog/nodejs-hosting-services

https://hostadvice.com/hosting-companies/nodejs/



Environment setup

First you will need to setup your environment. Then will need Node + NPM installation. You will also need GIT on your system.

But first upload the script you downloaded from codecanyon on any location you want to run it. 


Install node and npm: Download it from here.

Install GIT: Download it from here.

To verify your installation run


node --version
npm --version
git --version


Installing process manager

We suggest pm2 for process manager.  Follow that guide and install the pm2 globally, we will need it later.

npm install pm2 -g



Installing the required node modules

To install the required node modules, go in you script folder ( where package.json is ) and run the following command.

npm install


The required node modules will be installed. 


Now continue with Step.2