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

node-red-contrib-shopify

v0.1.0

Published

A collection of Node-RED nodes for Shopify Admin API / REST.

Readme

node-red-contrib-shopify

Japanese

A collection of Node-RED nodes for Shopify Admin API / REST.

NPM

Pre-requisites

The node-red-contrib-shopify requires Node-RED to be installed.

Install

Run the following command in the root directory of your Node-RED install.

npm install node-red-contrib-shopify

Restart your Node-RED instance, the shopify node appears in the palette and ready for use.

Overview

node-red-contrib-shopify contains the following modules.

Authenticate

Authenticate the Shopify Admin API. Select the type of application in App Type and enter the required information.

  • Private apps - Authenticate using API Key and password.
  • Custom apps - Authenticate using AccessToken.

shopify-customers node

The shopify-customers node performs the following operations on the shop's customer information.

  • Customer

    • List - Retrieves a list of customers.
    • Get - Retrieves a single customer.
    • Create - Creates a customer.
    • Update - Updates a customer.
    • Delete - Removes a customer.
  • Customer Address

    • List - Retrieves a list of addresses for a customer.
    • Get - Retrieves details for a single customer address.
    • Create - Creates a new address for a customer.
    • Update - Updates an existing customer address.
    • Delete - Removes an address from a customer’s address list.

shopify-products node

The shopify-products node performs the following operations on the shop's product information.

  • Product

    • List - Retrieve a list of products.
    • Get - Retrieve a single product.
    • Create - Create a new product.
    • Update - Updates a product
    • Delete - Delete a product.
  • Product Variant

    • List - Retrieves a list of product variants.
    • Get - Receive a single Product Variant.
    • Create - Create a new Product Variant.
    • Update - Modify an existing Product Variant.
    • Delete - Remove an existing Product Variant.

shopify-orders node

The shopify-orders node performs the following operations on the shop's order information.

  • DraftOrder

    • List - Retrieves a list of draft orders.
    • Get - Receive a single DraftOrder.
    • Create - Create a new DraftOrder.
    • Update - Modify an existing DraftOrder.
    • Delete - Remove an existing DraftOrder.
  • Order

    • List - Retrieve a list of orders.
    • Get - Retrieve a specific order.
    • Create - Create an order.
    • Update - Update an order.
    • Delete - Delete an order.

shopify-inventory node

The shopify-inventory node performs the following operations on the shop's inventory information.

  • InventoryItem

    • List - Retrieves a list of inventory items.
    • Get - Retrieves a single inventory item by ID.
    • Update - Updates an existing inventory item.
  • InventoryLevel

    • List - Retrieves a list of inventory levels.
    • Set - Sets the inventory level for an inventory item at a location.
    • Adjust - Adjusts the inventory level of an inventory item at a location.
    • Delete - Deletes an inventory level from a location.
  • Location

    • List - Retrieve a list of locations.
    • Get - Retrieve a single location by its ID.
    • inventoryLevels - Retrieve a list of inventory levels for a location.

Note: For more information, see REST Admin API reference.

Acknowledgements

The node-red-contrib-shopify uses the following open source software:

License

See license (Apache License Version 2.0).

Contributing

Both submitting issues to GitHub issues and Pull requests are welcome to contribute.

Developers

If the developer wants to modify the source of node-red-contrib-shopify, run the following code to create a clone.

cd ~\.node-red\node_modules
git clone https://github.com/joeartsea/node-red-contrib-shopify.git
cd node-red-contrib-shopify
npm install