© 2024 Jeremiah Yee
12 May 2023
I’m excited to share a deep dive into the technical aspects of SenseUs, a question-and-answer platform designed to provoke self-reflection and foster discussions on social issues. As the tech lead, I’ve been involved in every aspect of SenseUs’ engineering, from gathering requirements and planning implementations, to working on each individual part and ensuring stability post-launch.
In planning the architecture of SenseUs, I closely followed three key principles:
Following these principles, I came up with an architectural framework based on IBM’s three-tier architecture.
This framework divides an application into the data tier, the application tier, and the presentation tier.
With the technical groundwork laid, SenseUs was ready for production. It has optimal Lighthouse scores for the frontend, zero server failures since launch, and a stable and efficient database. In anticipation of real traffic, I used the most performant technologies available and built a solid CD pipeline for seamless deployment. A separate staging server was also created for testing new features.
SenseUs is not just an ordinary web app – it’s a progressive one. PWAs provide a fast, reliable, and engaging user experience that can be accessed from any device, regardless of platform or network conditions. They offer a native-like experience by leveraging modern web technologies, and they can be installed on native platforms.
PWAs provide app store independence, instant updates, and cross-platform compatibility. However, there are trade-offs. PWA adoption can be hindered by an unintuitive installation flow and perceived lack of security (as noted by our users) compared to app store installations. So, I decided to venture into getting the SenseUs PWA published on app stores. However, my journey with Android and iOS platforms presented distinct experiences. On Google’s Play Store, the process was smooth and cost-effective, thanks to Google’s robust support for PWAs. Conversely, the path to publication on Apple’s App Store demanded compliance with several requirements.
Despite these hurdles, SenseUs made it onto both the Google Play Store and the Apple App Store. Given the novelty of PWAs, this achievement signals a promising future where PWA principles and open web standards might gain more traction. Yay for single codebase!
In closing, the journey of building SenseUs has been as enriching as it has been challenging. The combination of different technologies and architectural decisions has resulted in a platform that encourages open conversation and helps us understand each other better.
Back to blog