I'm Building a Unified Freight Platform at My Part-Time Job and the Architecture Is Genuinely Interesting
Sidharth Sangelia is developing a unified freight platform at his part-time job, focusing on the architecture of integrating multiple vendor APIs. The project aims to provide a customer-facing dashboard for booking and tracking shipments while normalizing data from various vendors. The implementation involves using an adapter pattern in TypeScript to ensure consistent interactions with different vendor systems.
- ▪Sidharth Sangelia works as a Pricing and Tech Associate at an international freight forwarding company.
- ▪He is building a customer-facing dashboard that allows clients to book shipments and track them across multiple vendors.
- ▪The project involves integrating various vendor APIs, each with its own structure, into a unified platform.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3458581) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Sidharth Sangelia Posted on May 22 I'm Building a Unified Freight Platform at My Part-Time Job and the Architecture Is Genuinely Interesting #typescript #webdev #beginners #architecture Let me tell you about what I have been building at my part time job, because the architecture problem at the center of it is one of the more interesting things I have worked on. I am a Pricing and Tech Associate at an international freight forwarding company. Part time.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).