Learn how to build Medusa projects. Explore our guides.
Hello! I’m Bloom, your go-to ecommerce assistant. How can I help you?
[FAQ]
[Recipes]
[Customize Medusa Application]
[Admin Development]
[Storefront Development]
A digital commerce platform with a built-in framework for customizations.
Unlike other platforms, the Medusa Framework allows you to easily customize and extend the behavior of your commerce platform to always fit your business needs.
1export async function GET(2 req: MedusaRequest,3 res: MedusaResponse4 ) {5 const query = req.scope.resolve("query")6 7 const { data } = await query.graph({8 entity: "company",9 fields: ["id", "name"],10 filters: { name: "ACME" },11 })12 13 res.json({14 companies: data15 })16 }Medusa’s framework supports any business use case.
These recipes show you how to build a use case by customizing and extending existing data models and features, or creating new ones.
ERP
Integrate an ERP system to manage custom product prices, purchase rules, syncing orders, and more.
Restaurant-Delivery
Build a restaurant marketplace inspired by UberEats, with real-time delivery handling.
Commerce Modules
[Cart & Purchase]
[Merchandising]
[Fulfillment]
[Regions & Channels]
[User Access]
Updates delivered monthlyGet the latest product news and behind the scenes updates. Unsubscribe at any time.
Was this page helpful?