DEV Community

karan9082
karan9082

Posted on

Restrict Unauthorized people to run my react application on local systems

I want to restrict unauthorized people to run my application on there local systems . Is there a way or industry standard for similar kind of problem ?

For example - I am an authorized user and took checkout from Azure devops and run the react project on my system . Now someone else got access to this code and can run it on there local system . How can I restrict that ?

Top comments (1)

Collapse
 
brense profile image
Rense Bakker

If someone has your source code, they can run it. The only way to prevent that is to prevent them from getting your source code in the first place. You can do this by preventing access to your repository on GitHub for example, or by running your own private git server.