0.0.11 • Published 4 months ago

medusa-analytics-dashboard v0.0.11

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

Medusa Analytics Dashboard

Medusa plugin to integrate an analytics dashboard into the medusa admin panel.

NPM Package | Repository

Features

  • Orders analytics
  • Sales analytics based on currency.
  • Implementation of a user-friendly analytics UI using various charts.

Prerequisites


How to Install

1. Run the following command in the directory of the Medusa backend:

npm install medusa-analytics-dashboard

2. In medusa-config.js add the following at the end of the plugins array:

const plugins = [
  // ...
  {
    resolve: `medusa-analytics-dashboard`,
    options: {
      enableUI: true,
    },
  },
];

Test the Plugin

1. Run the following command in the directory of the Medusa backend to run the backend:

npm run start