JS Mixin Pattern
Add reusable behaviors to classes without deep inheritance chains
When to Use
- Multiple unrelated classes need the same capability (e.g., serialization, event handling, logging)
- Single inheritance is not sufficient to compose all required behaviors
- You want to share behavior without creating a shared base class
Instructions
- Define a mixin as a function that takes a superclass and returns a new class extending it.
- Apply mixins by chaining:
class MyClass extends Mixin2(Mixin1(Base)) {}. - Keep mixins focused on a single capability — avoid fat mixins that do too much.
- Alternatively, use
Object.assign(Target.prototype, mixinMethods)for simpler method injection.
// Functional mixin approach
const Serializable = (Base) =>
class extends Base {
serialize() {
return JSON.stringify(this);
}
static deserialize(json) {
return Object.assign(new this(), JSON.parse(json));
}
};
const Timestamped = (Base) =>
class extends Base {
constructor(...args) {
super(...args);
this.createdAt = new Date();
}
};
class User extends Serializable(Timestamped(class {})) {
constructor(name) {
super();
this.name = name;
}
}
const u = new User('Alice');
console.log(u.serialize()); // {"name":"Alice","createdAt":"..."}
- Use TypeScript intersection types to type mixed-in methods correctly.
Details
JavaScript's single-prototype-chain inheritance means a class can only extend one parent. Mixins work around this by composing behaviors through function application rather than inheritance.
Trade-offs:
- Method name collisions between mixins are silent — the last applied mixin wins
- Stack traces can be confusing — intermediate mixin classes appear in the trace
instanceofchecks do not work for mixins applied viaObject.assign(only for the class mixin approach)
When NOT to use:
- When composition via plain function calls or hooks would work just as well
- When the behaviors are tightly coupled to specific base classes — inheritance is cleaner
- For simple utility methods — just import a utility function
Source
https://patterns.dev/javascript/mixin-pattern
Process
- Read the instructions and examples in this document.
- Apply the patterns to your implementation, adapting to your specific context.
- Verify your implementation against the details and edge cases listed above.
Harness Integration
- Type: knowledge — this skill is a reference document, not a procedural workflow.
- No tools or state — consumed as context by other skills and agents.
Success Criteria
- The patterns described in this document are applied correctly in the implementation.
- Edge cases and anti-patterns listed in this document are avoided.
Related skills
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
Claude CodeCursoradvanced
890
234
3,220
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
claudeCursorWindsurfbeginner
259
72
1,122
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.
claudeCursorWindsurfintermediate
156
44
988