Files
medusa-store/www/apps/resources/app/architectural-modules/event/page.mdx
Shahed Nasser 65be42c818 docs: add integrations page (#7421)
* add integrations page

* update payment provider docs

* use stripe icon
2024-05-28 13:25:03 +03:00

28 lines
849 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { ChildDocs } from "docs-ui"
export const metadata = {
title: `Event Modules`,
}
# {metadata.title}
An Event Module implements the underlying publish/subscribe system that handles queueing events, emitting them, and executing their subscribers.
This makes the event architecture customizable, as you can either choose one of Medusas event modules or create your own.
---
## List of Event Modules
By default, Medusa uses the Local Event Module. This module uses Nodes EventEmitter to implement the publish/subscribe system.
This is useful for development. However, for production, its highly recommended to use other Event Modules, Redis Event Module.
<ChildDocs type="item" hideItems={["Guides"]} onlyTopLevel={true} />
---
## Create a Event Module
To create an event module, refer to [this guide](./create/page.mdx).