Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to reverse engineer result of "ng build prod" in angular2?

Tags:

angular

Is it possible to look at components, services and all the functions that generated this files in the first place?

like image 581
Kolos Avatar asked Sep 14 '25 00:09

Kolos


1 Answers

Components yes,
Since they are all downloaded to the user, anyone could take the time to figure out how they are structured.
The same as any other website.

For the services, anyone can see what the calls are and what is returned.
The same as any other website.

like image 161
Mathias Avatar answered Sep 16 '25 13:09

Mathias