Posts

Showing posts from November, 2023

A New Collection of Thoughtful Learning Apps — Now Available on iOS & Android

Image
I’m excited to share a set of mobile apps I’ve recently completed and published on both the Google Play Store and the Apple App Store. These apps are designed with a simple goal in mind: to make meaningful, structured content more accessible, whether you’re studying theology or improving your English vocabulary. 📱 Now Available on Both Platforms All apps are live and available for download: Google Play Developer Page: https://play.google.com/store/apps/dev?id=5835943159853189043 Apple App Store Developer Page: https://apps.apple.com/ca/developer/q-z-l-corp/id1888794100 📖 Theology & Confession Study Apps For those interested in Reformed theology and classical Christian teachings, I’ve developed a series of apps that present foundational texts in a clean, focused reading format: The Belgic Confession Canons of Dort Heidelberg Catechism Westminster Shorter Catechism Each app is designed to provide a distraction-free experience, making it easier to read, reflect, and revisit these im...

Building a Server-Side Rendered (SSR) App with Vite

Image
Building a Server-Side Rendered (SSR) app involves orchestrating three main components: the frontend app, the SSR render entry, and the server to serve assets and handle backend APIs. In this guide, we'll leverage Vite for the frontend, Node.js and Express for the server, and demonstrate a streamlined development workflow using Nx. Prerequisites * Node.js and npm installed * Basic understanding of JavaScript, React.js (or your preferred frontend framework), and Express.js Project Structur   ...

Building an Backend App with Vite: A Comprehensive Guide

Image
Introduction: Leveraging Vite for Express Backend Development Traditionally recognized as a powerful frontend build tool, Vite has become synonymous with rapid development, efficient bundling, and seamless hot module replacement in the world of web development. However, the utility of Vite extends beyond the boundaries of frontend applications, making it a compelling choice for optimizing the development workflow of Express backend applications. In this guide, we'll explore how you can harness   ...