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-tiny--erp-auth2

v1.0.0

Published

n8n custom node for Tiny ERP integration with OAuth2 authentication

Readme

n8n-nodes-tiny-erp

An n8n custom node for integrating with Tiny ERP API using OAuth2 authentication.

Features

This custom node provides comprehensive integration with Tiny ERP's product management API, supporting:

Product Operations

  • Create Product - Create new products in Tiny ERP
  • Get Product - Retrieve a specific product by ID
  • Get Many Products - Retrieve multiple products with filtering options
  • Update Product - Update existing product information
  • Update Price - Update product pricing information

Manufacturing Operations

  • Get Manufacturing - Retrieve product manufacturing data
  • Update Manufacturing - Update manufacturing information and steps

Kit Operations

  • Get Kit - Retrieve product kit information
  • Update Kit - Update kit composition and quantities

Variation Operations

  • Create Variation - Create product variations
  • Update Variation - Update existing variations
  • Delete Variation - Remove product variations

Additional Operations

  • Get Costs - Retrieve product cost information
  • Get Tags - Retrieve product tags

Prerequisites

  • n8n instance (version 1.0.0 or higher)
  • Tiny ERP account with API access
  • OAuth2 application configured in Tiny ERP

Installation

From npm (when published)

npm install n8n-nodes-tiny-erp

From source

  1. Clone this repository
  2. Install dependencies:
    npm install
  3. Build the project:
    npm run build
  4. Link to your n8n installation or copy the dist folder to your n8n custom nodes directory

Configuration

OAuth2 Setup

  1. In your Tiny ERP account, create a new OAuth2 application
  2. Note down the Client ID and Client Secret
  3. Set the redirect URI to your n8n instance OAuth callback URL

n8n Credential Configuration

  1. In n8n, create a new credential of type "Tiny ERP OAuth2 API"
  2. Enter your Client ID and Client Secret
  3. Complete the OAuth2 authorization flow

Usage

  1. Add the "Tiny ERP" node to your workflow
  2. Select the desired operation (e.g., "Get Many", "Create", "Update")
  3. Configure the required parameters based on the operation
  4. Connect your OAuth2 credentials

Example: Get All Products

  • Operation: Get Many
  • Additional Fields:
    • Name: "Product Name" (optional filter)
    • Status: "Active"
    • Limit: 50

Example: Create Product

  • Operation: Create
  • Product Data:
    • SKU: "PROD-001"
    • Description: "My Product"
    • Type: "Product"
    • Unit: "UN"

API Documentation

This node is built based on the Tiny ERP API documentation. For detailed information about available fields and operations, refer to the Tiny ERP API Documentation.

Development

Project Structure

├── credentials/
│   └── TinyOAuth2Api.credentials.ts    # OAuth2 credential definition
├── nodes/
│   └── TinyErp/
│       ├── TinyErp.node.ts             # Main node implementation
│       ├── GenericFunctions.ts         # Helper functions
│       └── tinyerp.svg                 # Node icon
├── dist/                               # Compiled output
├── package.json                        # Project configuration
├── tsconfig.json                       # TypeScript configuration
└── README.md                           # This file

Building

npm run build

Linting

npm run lint
npm run lintfix  # Auto-fix issues

Development Mode

npm run dev  # Watch mode for TypeScript compilation

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Run tests and linting
  5. Submit a pull request

License

MIT License - see LICENSE file for details

Support

For issues and questions:

Changelog

1.0.0

  • Initial release
  • Support for all major product operations
  • OAuth2 authentication
  • Comprehensive error handling
  • Full TypeScript support