Run the following command to install the dependencies
npm i
Create a .env file and set the following keys
DEV_MONGO_URL=mongodb://localhost:27017/
Run the following command to get the application up and running on port 8000
npm run dev
The IP address and country feature is not supported in localhost, as the localhost's IP is 127.0.0.1. To the the features up and running, install ngrok globally and run it on localhost. The following command installs ngrok globally.
npm install ngrok -g
Run the following command to get ngrok to run on port 8000
ngrok http 8000
After successfully completing the above steps, use the url given by ngrok as shown in the below image.