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-shopier

v0.1.2

Published

n8n community node for Shopier. Enables automation with Shopier's API, including product management and integration with other services.

Readme

n8n.io - Shopier Version Downloads License

A powerful n8n community node for Shopier API integration

Seamlessly automate your Shopier e-commerce workflows with n8n


What is this? A custom n8n node for integrating with Shopier API. This node enables seamless automation workflows between Shopier and other services through n8n's visual workflow builder.

What is n8n? n8n is a fair-code licensed workflow automation platform that lets you connect different services and automate tasks visually.

Table of Contents

Installation

Follow the installation guide in the n8n community nodes documentation.

Quick Install via n8n Community Nodes

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-shopier
  4. Agree to the risks: I understand the risks of installing unverified code from a public source
  5. Select Install

That's it! After installation, the Shopier node will be available in your n8n palette.

Features

This Shopier node provides comprehensive integration with the Shopier API, supporting:

Products

  • Get Many - Retrieve all products with comprehensive filtering options:

    • Status Filters: Active, Inactive, Draft products
    • Category Filtering: Filter by specific category ID
    • Product Identification: SKU and name filtering
    • Date Range: Filter by creation date range (created_from, created_to)
    • Pagination: Efficient data retrieval with limit controls
    • Return All: Option to retrieve all products with automatic pagination
  • Get - Retrieve a specific product by ID with detailed information

Credentials

To use this node, you need to authenticate with Shopier using your API credentials. Here's how to set it up:

Prerequisites

  1. You must have a Shopier account
  2. Access to Shopier Developer Panel for API credential generation

Authentication Setup

  1. Log in to your Shopier account
  2. Navigate to the Developer Panel or API settings
  3. Generate a Personal Access Token
  4. Note down your Personal Access Token

Credential Configuration

When setting up the Shopier API credentials in n8n:

  • Personal Access Token: Your Shopier Personal Access Token for API authentication

The node uses Bearer Token authentication with your Personal Access Token.

Compatibility

  • Minimum n8n version: 1.0.0
  • Node version: 1.0
  • Tested with: n8n 1.x
  • Node.js: >=22.16

This node uses the Shopier API and should be compatible with all current Shopier configurations.

Usage

Quick Start

  1. Install the node using n8n's community node installation process
  2. Set up your Shopier API credentials
  3. Create a new workflow and add the Shopier node
  4. Configure your desired operation (Product management)

Resource Operations

Product Operations: Retrieve and filter your product catalog with comprehensive filtering options matching official Shopier API specifications.

Advanced Configuration

Pagination: Use limit parameters for large datasets to efficiently manage API calls and response sizes.

Advanced Product Filtering: Apply comprehensive filters following official Shopier API specification:

  • Status Filters: active, inactive, draft
  • Identification: sku, name, category_id
  • Date Filtering: created_from, created_to for creation date range
  • Pagination: limit parameter for efficient data retrieval

Error Handling: The node includes comprehensive error handling with detailed error messages for troubleshooting.

Contributing

We welcome contributions from the community! Whether you're fixing bugs, adding features, or improving documentation, your help is appreciated.

How to Contribute

  1. Fork the Repository: Click the "Fork" button on GitHub to create your own copy
  2. Clone Your Fork: git clone https://github.com/YOUR_USERNAME/n8n-nodes-shopier.git
  3. Create a Branch: git checkout -b feature/your-feature-name
  4. Make Your Changes: Implement your feature or fix
  5. Test Your Changes: Ensure everything works correctly
  6. Commit Your Changes: git commit -am 'Add some feature'
  7. Push to Your Branch: git push origin feature/your-feature-name
  8. Create a Pull Request: Submit your changes for review

Code Standards

  • Follow the existing TypeScript code style
  • Use meaningful variable and function names
  • Add JSDoc comments for new functions
  • Ensure all new code is properly typed

Reporting Issues

Found a bug or have a feature request? Please check existing issues first, then create a new issue with:

  • Clear description of the problem or request
  • Steps to reproduce (for bugs)
  • Expected vs actual behavior
  • Your environment details (n8n version, Node.js version, etc.)

Development Setup

Prerequisites

  • Node.js >=22.16
  • n8n (for testing)
  • Shopier Account with API access

Setup Instructions

  1. Clone the Repository

    git clone https://github.com/YOUR_USERNAME/n8n-nodes-shopier.git
    cd n8n-nodes-shopier
  2. Install Dependencies

    npm install
  3. Build the Project

    npm run build
  4. Linting and Formatting

    npm run lint        # Check for linting issues
    npm run lintfix     # Fix auto-fixable issues
    npm run format      # Format code with prettier

Project Structure

├── credentials/                 # Authentication credential definitions
│   └── ShopierApi.credentials.ts
├── nodes/
│   └── Shopier/
│       ├── Shopier.node.ts        # Main node orchestrator
│       ├── GenericFunctions.ts    # Shared utility functions
│       ├── types/                 # TypeScript type definitions
│       │   └── index.ts
│       ├── operations/            # Resource operation implementations
│       │   ├── index.ts
│       │   └── product.operations.ts
│       ├── node-definition/       # Node UI property definitions
│       │   ├── index.ts
│       │   ├── resources.ts
│       │   ├── operations.ts
│       │   └── fields.ts
│       ├── endpoints/             # API endpoint definitions
│       │   └── products.endpoints.ts
│       └── shopier.svg            # Node icon
├── dist/                       # Compiled output
├── gulpfile.js                 # Build configuration
├── package.json               # Project configuration
└── tsconfig.json              # TypeScript configuration

Testing Your Changes

  1. Build the project: npm run build
  2. Link to n8n: Follow n8n's community node development guide
  3. Test your changes in n8n workflows
  4. Verify all operations work as expected with real Shopier API

Resources

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

Acknowledgments

  • Thanks to the n8n team for creating an amazing workflow automation platform
  • Thanks to Shopier for providing a comprehensive e-commerce API
  • Thanks to all contributors who help improve this node

Need Help?