






Altus is a fully functional dashboard that embodies my long-standing vision of a clean and intuitive web application. For several years, I aspired to create such a project but lacked the time while working as a barista at Krakow International Airport. By the last quarter of 2024, I successfully delivered it in its Minimum Viable Product (MVP) state. The app steadily progressed as I developed it alongside my primary university tasks, working on it in my spare time, driven by a passion to create something unique and truly my own in a field I was deeply passionate about. Inspired by the quote Non omnis moriar, Altus stands as a reflection of my journey and growth as a web developer.
Frontend: React, TailwindCSS (TypeScript)
Backend: Node JS, Express JS, Passport JS (TypeScript)
Database: MongoDB
Other features: Session-based authentication with RBAC, Rest API
Referenced external APIs: Open Charge Map
To test the app features, please create an account even with a fictional email. The server validates just the syntax.
This project is licensed under the Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0).
You may use, share, and adapt this project for non-commercial purposes only.
For commercial use, please contact me at jzielinski47dev@gmail.com.
POST /api/auth/signup
Creates a new user account.
Parameter | Type | Description |
---|---|---|
username | string | Required. Username of the user |
string | Required. Email of the user | |
password | string | Required. Password for the user |
POST /api/auth
Authenticates a user.
Parameter | Type | Description |
---|---|---|
username | string | Required. Username of the user |
password | string | Required. Password of the user |
POST /api/auth/logout
Logs out the currently authenticated user.
GET /api/auth/status
Returns the authentication status of the current user.
GET /api/users
Returns a list of all users.
GET /api/users/count
Returns the count of currently active users.
POST /api/users/delete/:username
Deletes a user. Administrator rights required.
Parameter | Type | Description |
---|---|---|
username | string | Required. Username of the user to delete |
PATCH /api/users/patch/username/:username
Updates the username of an existing user.
Parameter | Type | Description |
---|---|---|
username | string | Required. Current username of the user |
newUsername | string | Required. New username to update to |
PATCH /api/users/grant/:username
Grants administrator rights to a user. Administrator rights required.
Parameter | Type | Description |
---|---|---|
username | string | Required. Username of the user to promote |
GET /api/users/me
Returns the details of the authenticated user.
GET /api/admin
Returns detailed data for all users. Administrator rights required.
- Complex user authentication system (Sessions)
- Role-based access control (RBAC) with security measures
- Modern and clean UI design
- Various features, including:
- Session timer
- Admin panel
- User management
- User remembered settings
- User statistics collection
- User profile customization
- Finding closest EV Charges based on location

Leave a Reply