Backend Development Projects in ChennaiBackend Development Projects in Chennai
Cover image for Cognitive Guardian: Building Cognitive Guardian
Cognitive Guardian: Building Cognitive Guardian was a massive undertaking that pushed me to bridge the gap between physical hardware and cloud infrastructure. Transitioning this from a conceptual idea to a fully integrated digital tether taught me invaluable lessons in full-stack architecture, IoT, and edge computing. Architecting Resilient Systems (Failover Logic): I learned how to design a system that doesn't just fail gracefully, but adapts. Building the "Offline Handshake" protocol taught me how to seamlessly hand over session logic from a smartphone (Cellular/BLE) to a microcontroller (LoRaWAN) when entering network dead zones. Edge AI & Hardware-Software Integration: Instead of relying on cloud-based machine learning (which introduces latency), I learned how to program Edge AI natively on a microcontroller. Writing C++ state machines to calculate 3D acceleration vector magnitudes (via an MPU6050 sensor) taught me how to achieve zero-latency anomaly detection while operating under strict hardware constraints. Polyglot Database Strategy: I leveled up my data engineering skills by realizing one database doesn't fit all. I learned how to route high-throughput, real-time GPS telemetry into MongoDB (leveraging 2dsphere indexes for geospatial queries), while using PostgreSQL for strict relational state tracking, and Hyperledger Fabric for immutable audit logs. Privacy by Design (Self-Sovereign Identity): Handling sensitive medical data taught me modern compliance and security. I learned how to implement Decentralized Identifiers (DIDs) on a permissioned blockchain, ensuring that user data remains encrypted and is only temporarily accessible to authorities via smart contracts during an active SOS. Mobile Battery Optimization & Background Tasks: On the Flutter side, I learned how to handle intensive background processes without killing the user's device. Implementing dynamic location polling tied to the phone's internal accelerometer taught me deep, native-level power optimization for both Android and iOS. Managing High-Velocity Data Streams: Building the Node.js/Express backend taught me how to handle asynchronous data spikes. I learned to implement rate-limiting and use Socket.IO (http://Socket.IO) to bypass standard HTTP request cycles, successfully pushing critical hardware SOS alerts to a React web dashboard in under two seconds.
1
92
Cover image for 🌍 Voyageur – Travel Planner
🌍 Voyageur – Travel Planner Platform I built Voyageur, a full-stack travel planning platform designed to help users discover, explore, and book curated travel experiences through a clean and high-performance interface. The goal of this project was to simulate a real-world travel product with scalable architecture, smooth UX, and API-driven content. 🚀 What it does Voyageur allows users to: Explore curated travel packages across multiple destinations Filter trips by budget, duration, category, and preferences View detailed itineraries with hotels, transport, and experiences Save packages to a personal wishlist Book trips with dynamic pricing calculation See live weather insights for destinations Browse visually rich destinations powered by dynamic images 🧠 Smart Features Dynamic Image System Integrated Unsplash API to fetch destination-based images. Each package displays unique visuals with caching and fallback handling to ensure reliability and performance. Optimized Navigation Fixed real-world issues like slow page transitions and blank states by improving data fetching, caching, and route handling. Performance First Approach Implemented lazy loading, pagination, debounced filters, and API caching to keep the experience fast even with large datasets. ⚙️ Tech Stack Frontend React (Vite) Tailwind CSS React Router Context API Backend Django REST Framework JWT Authentication Database MySQL APIs Unsplash API (images) Weather API 🏗️ Architecture The platform follows a clean API-driven architecture: React frontend communicates with Django REST APIs Backend handles authentication, business logic, and data processing MySQL ensures structured and scalable data storage 🛠️ Challenges I Solved Fixed slow routing and blank page issues between views Ensured unique images per destination using API randomization + caching Handled async image fetching without breaking UI Migrated and managed structured data in MySQL Built fallback systems to prevent UI breaks 💡 Why this project matters Voyageur isn’t just a UI project — it demonstrates: Real-world full-stack architecture API integration at scale Performance optimization strategies Clean, maintainable code structure Problem-solving under real development constraints.
0
44