Skip to content

Instantly share code, notes, and snippets.

View jamesjfoong's full-sized avatar
🏠
Working from home

James Jeremy Foong jamesjfoong

🏠
Working from home
View GitHub Profile
@jamesjfoong
jamesjfoong / micro-frontends-overview.md
Last active June 3, 2026 08:32
Micro Frontends (MFEs) — A Practical Overview

Micro Frontends (MFEs) — A Practical Overview

Think of MFEs as microservices, but for the frontend. Each team owns a vertical slice: UI + logic + deployment.


1. What Are Micro Frontends?

An architectural style where independently deliverable frontend applications are composed into a greater whole.

@ChristopherA
ChristopherA / git_worktrees.md
Last active August 5, 2026 23:30
Git Worktree Best Practices and Tools

Git Worktree Best Practices and Tools

Last Updated: 2024-02-06

Overview

Git worktrees allow you to check out multiple branches simultaneously in separate directories, while sharing a single .git metadata store.

THere are some best practices, useful Git aliases, and shell functions for efficiently managing Git worktrees. It covers:

  • Setting up Git aliases for worktree operations.
  • Using shell functions for enhanced worktree management.