Skip to main content
Reorder installs directly into an existing Medusa project as a plugin. The steps below take you from a fresh Medusa store to a running Reorder installation where you can manage subscriptions from the Admin.
Reorder requires Medusa 2.3 or later. The recommended version is @medusajs/medusa >= 2.4.0. See Requirements for the full compatibility matrix.
1

Install the plugin

Add @reorderjs/reorder to your Medusa project using your preferred package manager.
npm install @reorderjs/reorder
2

Add the plugin to medusa-config.ts

Open your medusa-config.ts file and add Reorder to the plugins array.
medusa-config.ts
plugins: [
  // other plugins
  {
    resolve: "@reorderjs/reorder",
    options: {},
  },
]
3

Start your Medusa store

Run your normal Medusa startup command. Reorder registers its modules, API routes, scheduled jobs, and Admin UI extensions on boot.
yarn dev
4

Open the Admin and navigate to Subscriptions

Once the store is running, open your Medusa Admin dashboard. You will see a Subscriptions entry in the sidebar. From there you can access Plans & Offers, Renewals, Dunning, Cancellations, Activity Log, and Analytics.

Next steps

  • Core concepts — understand the subscription lifecycle, plan model, and renewal flow
  • Plans & Offers — create your first subscription plan and attach it to a product
  • Requirements — verify Node.js and Medusa version compatibility