Map-Me Selatko is a Web Application for logging visits in a map and sharing them with friends. It implements a RESTful API with CRUDL and auth functionalities. The MERN stack was the chosen development framework.
The main features are as follows: Sign up: Users can register by creating a new account using an email address. User list: Any visitor can see a list of all registered users. Authentication: Registered users can sign-in and sign-out. Protected user profile: Only registered users can view individual user details and maps after signing in. Authorized user edit and delete: Only a registered and authenticated user can edit or remove their own user account details. Map entries (Visits): Only a registered and authenticated user can create, edit or remove their own map entries.
Authentication
Some of the mentioned user CRUDL operations, including user details and map entries, have protected access, which required the requesting client to be authenticated, authorized, or both. I used JSON Web Token (JWT) mechanism to implement these authentication features. JWT is a stateless authentication mechanism that does not require storing user state on the server side.

Material-ui was the framework used for faster and simpler GUI implementation and react-map-gl was the selected suite for making the use of Mapbox GL JS in React easy.