Vanja's Blog
Welcome to the personal blog of Vanja Petreski. Software Engineering. Travelling. Thoughts. Scroll down for recent posts..
Securing a Backend API
Imagine a situation where you have to build a flexible REST backend API to support mobile and single page apps with end users, external automated process and other clients, like 3rd parties, in the future. You will quickly realize that security topic is very complex and time consuming. This is an overview of the problem and solution I [...]
Password Management
My approach for password management was simple so far – keeping a few passwords in my head and using them randomly for online services. This is a very bad approach because if one service gets compromised all your other accounts using the same password are at risk. I started receiving suspicious emails/activities for some of my [...]
React Router
React Router is the standard routing library for React. It keeps your UI in sync with the URL. This short article will give you some info how to quickly start using it. If you remember my React Countries app and React articles – we will use that app and add routing features to it, for the sake of practicing React Router library. [...]