medusa-analytics-dashboard
v0.0.11
Published
Medusa plugin to add analytics dashboard in admin panel.
Downloads
6
Maintainers
Readme
Medusa Analytics Dashboard
Medusa plugin to integrate an analytics dashboard into the medusa admin panel.
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