Home > Enterprise >  How to host a live server on Visual Studio code for people on another network?
How to host a live server on Visual Studio code for people on another network?

Time:04-01

Currently working on creating a website with 5 other people. Is there a way to host the website so they can see the changes?

We are using the following extension's:

Microsofts Live share , Ritwick Dey's Live server

Would it be possible to make it so they can see the website update as the code changes? Do you know of any other tools that offer these features?

CodePudding user response:

use can use git. Git is a free and open-source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.

https://git-scm.com/

CodePudding user response:

The purpose of the Live Share extension from Vscode is for collaboration in coding.

If you want to host a website without going through a normal website setup process, a simple way is to use Ngrok to temporarily expose one of your computer's port to the public, then ask your collaborators to go to the Ngrok link to access your website.

CodePudding user response:

You can use cloudflare to expose you localhost , Here's a video explaining how to set it up.

  • Related