What are some useful tips to secure a Single Page App?
Hi folks,
Looking for some security tips for front-end SPA apps. Although I am using Angular, I am not looking for tips that are specifically meant for Angular apps.
If you are talking about securing your Front-End code the answer is as follows.
Concat and Minify all your Javascript and CSS files into a single file. It not only secure your code it will also make improve the performance of your application to some extent.
Okay... But what I thought was like if you minify your code, then the external users cannot able to understand your code right ? so in that perspective I mentioned the above one.
Achyuth
Front-End Dev
If you are talking about securing your Front-End code the answer is as follows.
Concat and Minify all your Javascript and CSS files into a single file. It not only secure your code it will also make improve the performance of your application to some extent.