10 common backend tasks and how to automate them

While building the backend, developers are often involved with a lot of repetitive tasks like configuring APIs, handling service discovery and scaling infrastructure. What if you could automate most of these complex problems? Today, we will learn about 10 common backend tasks and how to automate them using Encore. Let’s jump in. Building scalable apps […]

How to Say “Hello World” in x86 Assembly

Because why not? Software is fun. I know this sounds insane; assembly for fun—but trust me, you feel alive. I’m lucky to be at a point where I can build almost anything, so I’m testing the waters for a low-level series combining Node.js and assembly as a shared library. In this article, we’re saying hello […]

How to write clean code

Why Write Clean Code? ⛩️ Imagine if you tried to find something in a messy room—you’d waste time searching, right? The same goes for messy code! It’s HARDER to find problems or understand what’s happening. With clean code, you can avoid that mess. You know what?.. By writing clean code you will save other developers […]

How to make your Express app 9x faster (and type-safe)

? This guide shows you how to migrate an existing Express.js app to Encore.ts, an Open Source backend framework for TypeScript, to unlock a 9x performance boost. Why migrate? Express.js is great for simple APIs, but as your app scales, you may face limitations. While the large Express.js community offers plugins and middleware to help, […]

How to Structure Your Backend Code in Node.js (Express.js)

When developing a Node.js application using Express.js, structuring your codebase effectively is crucial for maintainability, scalability, and ease of collaboration. A well-organized project structure allows you to manage complexity, making it easier to navigate and understand the code. In this blog, we’ll explore a typical folder structure for an Express.js application and explain the purpose […]

How to Change Colours in Command Prompt?

Last Updated : 24 Jun, 2024 Customizing the appearance of your Command Prompt can make your coding or command execution sessions more enjoyable and easier on the eyes. In this guide, we’ll walk you through the process of changing colours in Command Prompt, from altering text colour to adjusting the background for better clarity and […]

How to Implement Micro Frontends Using SystemJS: A Comprehensive Guide

In the ever-evolving landscape of web development, the need for scalable, maintainable, and flexible architectures has never been greater. Enter micro frontends, a design approach that breaks down the frontend monolith into smaller, more manageable pieces. Much like microservices have revolutionized backend development by decomposing complex applications into smaller services, micro frontends aim to achieve […]