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

v0.1.5

Published

n8n node for Tiendanube/Nuvemshop API integration

Readme

n8n-nodes-tiendanube

This is an n8n community node that lets you use Tiendanube/Nuvemshop in your n8n workflows.

Tiendanube (also known as Nuvemshop in Brazil) is a leading e-commerce platform in Latin America that allows you to create and manage online stores.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

Community Node Installation

  1. Go to Settings > Community Nodes in n8n
  2. Select Install
  3. Enter n8n-nodes-tiendanube in Enter npm package name
  4. Agree to the risks and click Install

Manual Installation

To install manually, navigate to your n8n installation and run:

npm install n8n-nodes-tiendanube

For docker installations, add the following line before the n8n starts:

docker exec -it -u node <container-name> npm install n8n-nodes-tiendanube

Configuration

Getting Tiendanube Credentials

  1. Log in to your Tiendanube admin panel
  2. Go to Apps section
  3. Create a new app or use an existing one
  4. Get your Store ID (numeric ID visible in your store URL)
  5. Get your Access Token from the app credentials

Setting up Credentials in n8n

  1. In n8n, go to CredentialsNew
  2. Search for Tiendanube API
  3. Enter your Store ID
  4. Enter your Access Token
  5. Click Save

Operations

Products

Get

Retrieve a single product by ID.

Parameters:

  • Product ID (required): The ID of the product to retrieve

Get Many

Retrieve multiple products with filtering and pagination.

Parameters:

  • Return All: Whether to return all results or limit them
  • Limit: Maximum number of results to return (1-200)
  • Additional Fields:
    • Published: Filter by published status
    • Free Shipping: Filter by free shipping
    • Category ID: Filter by category
    • Search Query: Search by name or description
    • Sort By: Sort results by created-at, updated-at, name, or price (ascending/descending)

Create

Create a new product.

Parameters:

  • Name (required): Product name
  • Additional Fields:
    • Description: Product description
    • Price: Product price
    • Promotional Price: Sale price
    • Cost Price: Cost of the product
    • SKU: Stock keeping unit
    • Stock: Available quantity
    • Published: Whether the product is visible
    • Free Shipping: Whether shipping is free
    • Weight, Width, Height, Depth: Physical dimensions
    • Brand: Product brand
    • Categories (JSON): Array of category objects
    • Images (JSON): Array of image objects
    • Variants (JSON): Array of variant objects

Example Categories JSON:

[
  {"id": 123},
  {"id": 456}
]

Example Images JSON:

[
  {"src": "https://example.com/image1.jpg"},
  {"src": "https://example.com/image2.jpg"}
]

Update

Update an existing product.

Parameters:

  • Product ID (required): The ID of the product to update
  • Update Fields: Any fields you want to modify (same as Create operation)

Delete

Delete a product by ID.

Parameters:

  • Product ID (required): The ID of the product to delete

Multilingual Support

Tiendanube supports multiple languages. You can provide text fields in two ways:

  1. Simple text (defaults to Spanish):
Mi Producto
  1. JSON format (multiple languages):
{
  "es": "Mi Producto",
  "en": "My Product",
  "pt": "Meu Produto"
}

This applies to fields like name and description.

Compatibility

  • Minimum n8n version: 1.0.0
  • Tested against: Tiendanube API v1

Resources

Development

Building the Package

# Install dependencies
npm install

# Build the package
npm run build

# Link for local testing
npm link

In your n8n installation directory:

npm link n8n-nodes-tiendanube

Project Structure

n8n-nodes-tiendanube/
├── credentials/
│   └── TiendanubeApi.credentials.ts
├── nodes/
│   └── Tiendanube/
│       ├── Tiendanube.node.ts
│       └── tiendanube.svg
├── package.json
├── tsconfig.json
└── gulpfile.js

License

MIT

Author

Sergio Keberlein

Support

If you encounter any issues or have questions, please file an issue on the GitHub repository.