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

n8n-nodes-vmass

v0.1.3

Published

n8n community node for VMASS POS integration

Readme

n8n-nodes-vmass

Community node for n8n to integrate with VMASS POS System — a multi-tenant point-of-sale platform for restaurants, cafes, and retail shops in Vietnam.

Installation

Community Nodes (Recommended)

  1. Open n8n → SettingsCommunity Nodes
  2. Click Install
  3. Enter n8n-nodes-vmass
  4. Click Install

Manual (Self-hosted)

cd ~/.n8n/nodes
npm install n8n-nodes-vmass

Docker

# docker-compose.yml
services:
  n8n:
    image: n8nio/n8n
    environment:
      - N8N_CUSTOM_EXTENSIONS=/home/node/.n8n/custom
    volumes:
      - n8n_data:/home/node/.n8n

Then inside the container:

cd /home/node/.n8n/nodes
npm install n8n-nodes-vmass

Credentials

  1. Go to CredentialsCreate NewVMASS API
  2. Enter:
    • API Key: Get from VMASS Dashboard > Settings > API Keys
    • Base URL: https://your-domain.vmass.vn/api/public
  3. Click Save

Test Key vs Live Key

| Type | Format | Purpose | |------|--------|---------| | Test Key | vmss_test_... | Sandbox — no real data affected | | Live Key | vmss_live_... | Production — real data |


Nodes

VMASS (Action Node)

Perform CRUD operations on VMASS resources.

| Resource | Operation | Description | |----------|-----------|-------------| | Order | Create | Create a new order with items | | | Get | Get order details by ID | | | Get Many | List orders with filters (status, date range, pagination) | | | Update Status | Update order status (pending/processing/completed/paid/cancelled) | | Product | Create | Create a new product | | | Get | Get product details | | | Get Many | List products (filter by category, name) | | | Update | Update product information | | | Delete | Soft delete a product | | Inventory | Create | Add a new inventory item | | | Get | Get inventory item details | | | Get Many | List all inventory items | | | Get Low Stock | Get items below threshold | | | Update Quantity | Add, subtract, or set quantity | | Customer | Create | Create a new customer | | | Get | Get customer details | | | Get Many | List customers (filter by phone) | | | Update | Update customer information | | | Delete | Soft delete a customer | | Webhook | Get Many | List registered webhooks | | | Register | Register a new webhook endpoint | | | Unregister | Remove a webhook | | | Test | Send a test event to a webhook |

VMASS Trigger (Trigger Node)

Receive real-time webhook events from VMASS. Supports webhook signature verification via HMAC-SHA256.

| Event | Description | |-------|-------------| | order.created | New order created | | order.paid | Order payment received | | order.shipped | Order shipped | | order.completed | Order completed | | order.cancelled | Order cancelled | | product.updated | Product information updated | | inventory.low_stock | Inventory item below threshold | | inventory.expiring | Inventory item expiring soon | | customer.created | New customer created | | payment.received | Payment received |


Features

  • Retry logic: Auto-retry on rate limits (429) and server errors (5xx) with exponential backoff
  • Timeout: 30s request timeout
  • Error handling: Supports n8n's "Continue on Fail" mode
  • Webhook security: HMAC-SHA256 signature verification with replay attack protection
  • Response normalization: Automatically unwraps VMASS API response format

Example Workflows

Send Telegram notification on new order

VMASS Trigger (order.created) → Telegram (Send Message)

Auto-update Google Sheets on completed orders

VMASS Trigger (order.completed) → Google Sheets (Append Row)

Slack alert on low stock

VMASS Trigger (inventory.low_stock) → Slack (Post Message)

Sync customers to CRM

VMASS Trigger (customer.created) → HTTP Request (POST to CRM)

Support

License

MIT