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

@deenruv/dashboard-widgets-plugin

v1.0.6

Published

Admin dashboard plugin that provides rich order and product analytics widgets. It adds chart-based metrics, order summary tiles, category breakdowns, product charts, and a latest orders table to the admin dashboard.

Readme

@deenruv/dashboard-widgets-plugin

Admin dashboard plugin that provides rich order and product analytics widgets. It adds chart-based metrics, order summary tiles, category breakdowns, product charts, and a latest orders table to the admin dashboard.

Installation

pnpm add @deenruv/dashboard-widgets-plugin

Configuration

import { DashboardWidgetsPlugin } from '@deenruv/dashboard-widgets-plugin';

// In your Deenruv server config:
plugins: [
  DashboardWidgetsPlugin.init({
    // Optional: cache time for metrics queries in milliseconds
    cacheTime: 60000,
    // Optional: enable discount custom field support
    discountByCustomField: false,
    // Optional: additional order states to include in filters
    additionalOrderStates: [
      { state: 'InRealization', selectedByDefault: true },
    ],
  }),
]

Features

  • Order summary metrics (total revenue, order count, average order value, product count)
  • Interactive time-series charts for order count, order total, average order value, and product count
  • Configurable time ranges (today, this week, this month, this year, custom, etc.)
  • Hourly and daily chart intervals
  • Order state filtering for all metrics
  • Product-specific metric filtering
  • Categories and products breakdown chart widgets
  • Latest orders table widget
  • Materialized database views for fast metric aggregation

Admin UI

This plugin extends the admin UI with a comprehensive dashboard featuring:

  • Orders Widget — Time-series charts with configurable metrics, date ranges, and order state filters
  • Order Summary Tiles — Quick overview cards showing total revenue, order count, average value, and product count
  • Categories Chart Widget — Breakdown of orders by product categories
  • Products Chart Widget — Top products bar chart with custom tooltips
  • Latest Orders Widget — Recent orders table with payment method info

API Extensions

Admin API

  • Query additionalOrderStates: [AdditionalOrderState!]! — Returns configured additional order states
  • Query chartMetric(input: ChartMetricInput!): ChartMetrics! — Returns time-series chart data for selected metric types, date ranges, and intervals
  • Query orderSummaryMetric(input: OrderSummaryMetricInput!): OrderSummaryMetrics! — Returns aggregated order summary data (totals, counts, averages)