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

medusajspos

v0.0.6

Published

Premium MedusaJS v2 Point of Sale (POS) backend plugin. Barcode scanning, PDF invoices, packing lists, and more.

Readme

medusajspos (Backend Plugin)

The backend engine and Medusa v2 plugin for the medusajs-pos frontend. This plugin extends the Medusa framework with POS-specific business logic, automated workflows, and admin customizations required for physical store operations.


Screenshots


Features

| Route | Method | Description | |---|---|---| | /admin/pos/scan-add | POST | Scan a barcode and add the matching variant to a draft order | | /admin/orders/:id/invoices | GET | Generate and download a PDF invoice for an order | | /admin/orders/:id/packing-list | GET | Generate and download a PDF packing list for an order | | /admin/orders/:id/change-customer | POST | Reassign an order to a different customer |

Note: The "Ready for Pickup" email/SMS notification route (POST /admin/orders/:id/send-ready-pickup) is not included in the plugin. Notification templates and providers are business-specific. See docs/send-pickup-email-sms.md to implement it in your own backend.


Requirements

  • Medusa v2.3.0+
  • Node.js >= 20

Installation

1. Install from npm

npm install medusajspos
# or
yarn add medusajspos

2. Register in medusa-config.ts

import { defineConfig } from "@medusajs/framework/utils"

module.exports = defineConfig({
  // ...
  plugins: [
    {
      resolve: "medusajspos",
      options: {},
    },
  ],
})

4. Run database migrations

npx medusa db:migrate

This creates the invoice and invoice_config tables used by the invoiceGenerator module.


Modules

invoiceGenerator

Stores invoice records and generates PDF invoices using pdfmake. Supports configurable company branding (logo, name, address, notes) stored in invoice_config.

packingListGeneratorService

Generates PDF packing lists for orders. Includes item images (with WebP→PNG conversion via sharp), shipping method type detection, and payment status display.


Notifications (Email & SMS)

This plugin does not bundle a "Ready for Pickup" notification workflow because email/SMS templates and provider credentials are unique to every business.

To implement it yourself:

  1. Follow the guidedocs/send-pickup-email-sms.md — complete code for the workflow, route, and provider setup.
  2. Pick a Notification provider:
  3. How notifications work in MedusaNotification Module Provider docs

API Reference

POST /admin/pos/scan-add

Looks up a product variant by barcode, UPC, EAN, or SKU and adds it to a draft order. Supports batch scanning.

Body:

{
  "draft_order_id": "order_01JXX...",
  "items": [
    { "barcode": "012345678901", "quantity": 1 }
  ]
}

Response:

{
  "draft_order": { ... },
  "detected_code": "012345678901",
  "matched_variant": { "id": "...", "product_title": "...", "sku": "..." },
  "scans_processed": 1
}

GET /admin/orders/:id/invoices

Returns a PDF file (application/pdf) for the given order. The invoice is stored and reused on subsequent calls.


GET /admin/orders/:id/packing-list

Returns a PDF packing list for the given order, including product images, SKUs, and quantities.


POST /admin/orders/:id/change-customer

Reassigns an order to a different customer. Updates both customer_id and email on the order.

Body:

{
  "customer_id": "cus_01JXX..."
}

Dependencies

| Package | Purpose | |---|---| | pdfmake | PDF generation for invoices and packing lists | | axios | Fetching product images and barcode fonts from remote URLs | | sharp | Converting WebP images to PNG (pdfmake doesn't support WebP) |


🤝 Contributors

We appreciate all contributions! See CONTRIBUTING.md for more info.


💖 Funding

Help fund the future of Medusa POS via:

BuyMeACoffee PayPal


📄 License

MIT