mediator-pattern

Mediator/Middleware Pattern

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "mediator-pattern" with this command: npx skills add patternsdev/skills/patternsdev-skills-mediator-pattern

Mediator/Middleware Pattern

The mediator pattern makes it possible for components to interact with each other through a central point: the mediator. Instead of directly talking to each other, the mediator receives the requests, and sends them forward! In JavaScript, the mediator is often nothing more than an object literal or a function.

You can compare this pattern to the relationship between an air traffic controller and a pilot. Instead of having the pilots talk to each other directly, which would probably end up being quite chaotic, the pilots talk the air traffic controller. The air traffic controller makes sure that all planes receive the information they need in order to fly safely, without hitting the other airplanes.

When to Use

  • Use this when multiple objects need to communicate but direct many-to-many relationships would be chaotic

  • This is helpful for implementing middleware chains (e.g., Express.js middleware)

When NOT to Use

  • When direct communication between two components is simpler and the system has few participants

  • When the mediator itself becomes a monolithic "god object" that's hard to maintain

  • When event-driven patterns (observer/pub-sub) provide sufficient decoupling without a central coordinator

Instructions

  • Create a central mediator that processes requests and forwards them to the appropriate handlers

  • Use the middleware pattern to chain processing functions that can modify requests/responses

  • Keep individual components unaware of each other; they only know about the mediator

Details

Although we're hopefully not controlling airplanes in JavaScript, we often have to deal with multidirectional data between objects. The communication between the components can get rather confusing if there is a large number of components.

Instead of letting every object talk directly to the other objects, resulting in a many-to-many relationship, the object's requests get handled by the mediator. The mediator processes this request, and sends it forward to where it needs to be.

A good use case for the mediator pattern is a chatroom! The users within the chatroom won't talk to each other directly. Instead, the chatroom serves as the mediator between the users.

class ChatRoom { logMessage(user, message) { const time = new Date(); const sender = user.getName();

console.log(`${time} [${sender}]: ${message}`);

} }

class User { constructor(name, chatroom) { this.name = name; this.chatroom = chatroom; }

getName() { return this.name; }

send(message) { this.chatroom.logMessage(this, message); } }

We can create new users that are connected to the chat room. Each user instance has a send method which we can use in order to send messages.

Case Study

Express.js is a popular web application server framework. We can add callbacks to certain routes that the user can access.

Say we want add a header to the request if the user hits the root '/' . We can add this header in a middleware callback.

const app = require("express")();

app.use("/", (req, res, next) => { req.headers["test-header"] = 1234; next(); });

The next method calls the next callback in the request-response cycle. We'd effectively be creating a chain of middleware functions that sit between the request and the response, or vice versa.

Let's add another middleware function that checks whether the test-header was added correctly. The change added by the previous middleware function will be visible throughout the chain.

const app = require("express")();

app.use( "/", (req, res, next) => { req.headers["test-header"] = 1234; next(); }, (req, res, next) => { console.log(Request has test header: ${!!req.headers["test-header"]}); next(); } );

Perfect! We can track and modify the request object all the way to the response through one or multiple middleware functions.

Every time the user hits a root endpoint '/' , the two middleware callbacks will be invoked.

The middleware pattern makes it easy for us to simplify many-to-many relationships between objects, by letting all communication flow through one central point.

Source

  • patterns.dev/vanilla/mediator-pattern

References

  • Docs - Express

  • Mediator Pattern - OO Design

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

react-2026

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

hooks-pattern

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

react-composition-2026

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

ai-ui-patterns

No summary provided by upstream source.

Repository SourceNeeds Review