npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@rsc-labs/medusa-store-analytics-pro-v2

v2.1.0

Published

Get advanced analytics data about your store

Downloads

18

Readme

Medusa Store Analytics Pro

What is it?

Medusa Store Analytics Pro is the extended version of very popular plugin - Store Analytics.

This repository has been created for instruction purposes and as a place for raising bugs and improvements.

It is a commercial software so it requires a licence to be used.

Found a bug or looking for an improvement?

Please raise an issue in Github issues.

Installation

Plugins supports two versions of charts - basic and modern.

Basic charts (supported in version 1.x.x)

  1. Install plugin by adding to your package.json. Use version 1.x.x.
...
"@rsc-labs/medusa-store-analytics-pro-v2": "1.1.1" // or other available version
...

and execute install, e.g. yarn install.

  1. Add plugin to your medusa-config.js with the licence key, which you received:
...
plugins: [
    {
      resolve: "@rsc-labs/medusa-store-analytics-pro-v2",
      options: {
        licenceKey: <licence-key>
      }
    }
]
...

Modern charts (supported in version 2.x.x)

  1. Install plugin by adding to your package.json. Use version 2.x.x.
...
"@rsc-labs/medusa-store-analytics-pro-v2": "2.0.0" // or other available version
...

and execute install, e.g. yarn install.

  1. Add plugin to your medusa-config.js with the licence key, which you received:
...
plugins: [
    {
      resolve: "@rsc-labs/medusa-store-analytics-pro-v2",
      options: {
        licenceKey: <licence-key>
      }
    }
]
...
  1. Configure medusa-config.ts
import { withAnalyticsAdminConfig } from "@rsc-labs/medusa-store-analytics-pro-v2/css"
...

admin: {
  vite: () => {
    return withAnalyticsAdminConfig({}, { theme: 'sapphire'}) // or `daylight`
  }
},
...

We support two themes - sapphire and daylight. You can preview them here: https://ui.shadcn.com/charts. If you have already some vite configuration you can include it in a first parameter, e.g.

admin: {
  vite: () => {
    return withAnalyticsAdminConfig({
      a: b,
      c: d
    }, { theme: 'sapphire'}) // or `daylight`
  }
},
...

Configuration

Plugin supports one additional option which you can pass into options. It is related to statistic Abandoned average value, which tells that customers did not finalize the cart. By default, abandoned cart is the one which was not updated in the last 7 days. You can configure it by your own. For instance, if cart needs to be treat as abandoned because it was not updated 20 days ago, then your configuration will look like this:

...
plugins: [
    {
      resolve: "@rsc-labs/medusa-store-analytics-pro-v2",
      options: {
        licenceKey: <licence-key>,
        abandonedCartTimeInDays: 20
      }
    }
]
...

Available functionalities

Q&A

Where is the source code?

This plugin is now behind the licence, so we cannot share the source code.

I am interested, what I need to do?

As mentioned, this plugin is behind the licence. We offer two types of licences:

  • subscription - recommended for people who create the store for their own, so for very low monthly cost you can have this functionality.
  • lifetime - recommended for people who create the store for the client (so cannot spend money on monthly basis). For one price, you can get Store Analytics Pro forever.

We offer also 14-day free trial if you are not sure if you need this plugin - please reach us via [email protected] or go to https://medusa-plugins.com.