Handle Image Uploads in Memory with Express.js

stack of books on table

Building a feature-rich web application often requires simple yet effective solutions. One such example is managing uploaded images in memory, specifically camera screenshots. Here, I’ll walk you through how to create an Express.js endpoint that stores and retrieves screenshots from memory. This setup is ideal when you want lightweight, temporary storage for uploaded files without

Making Your Local Socket.IO App Public with ngrok

person holding white electric plug

One of the most exciting moments in a development project is sharing your work with others. If you’re building an app with Socket.IO, whether for real-time messaging, notifications, or interactive applications, you’ll eventually want to make your local setup accessible to the public. This allows collaborators, testers, or clients to interact with your app without

Running a Python Script in Docker

brown and red shipping containers

When I first started working with Docker, one of the things I needed to figure out was how to run a Python script efficiently within a container. Docker is a fantastic tool for containerizing applications, and running Python scripts in this environment can simplify dependencies and make your projects more portable. In this post, I’ll