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

@btafoya/n8n-nodes-zohomail

v0.1.8

Published

n8n node for Zoho Mail

Readme

@btafoya/n8n-nodes-zohomail

npm version GitHub license GitHub issues GitHub stars

An n8n community node for Zoho Mail.

Repository: https://github.com/btafoya/n8n-nodes-zohomail

Features

  • OAuth2 authentication for Zoho Mail
  • Action node (Zoho Mail) for accounts, folders, messages, attachments, and labels
  • Polling trigger node (Zoho Mail Trigger) for new emails in a folder

Installation

Community nodes can only be installed on self-hosted n8n instances. They are not available on n8n Cloud.

Install from the n8n GUI

  1. Open your n8n instance and go to Settings > Community Nodes.
  2. Select Install.
  3. Enter the npm package name: @btafoya/n8n-nodes-zohomail.
  4. Check I understand the risks of installing unverified code from a public source.
  5. Select Install. n8n installs the node and adds it to the Community Nodes list.

Install manually with npm

Use this method when your n8n instance runs in queue mode or when you want to install private packages.

From inside your n8n installation or container:

mkdir -p ~/.n8n/nodes
cd ~/.n8n/nodes
npm i @btafoya/n8n-nodes-zohomail

Then restart n8n.

Other useful commands:

npm uninstall @btafoya/n8n-nodes-zohomail
npm update @btafoya/n8n-nodes-zohomail
npm install @btafoya/[email protected]

Install from a local build

cd /path/to/n8n
npm install /path/to/n8n-nodes-zohomail

Install with environment variables

Available from n8n v2.21.0. Set the following environment variables on your n8n instance, then restart:

export N8N_COMMUNITY_PACKAGES_ENABLED=true
export N8N_COMMUNITY_PACKAGES_MANAGED_BY_ENV=true
export N8N_COMMUNITY_PACKAGES='[{"name":"@btafoya/n8n-nodes-zohomail"}]'

In docker-compose.yml:

environment:
  - N8N_COMMUNITY_PACKAGES_ENABLED=true
  - N8N_COMMUNITY_PACKAGES_MANAGED_BY_ENV=true
  - 'N8N_COMMUNITY_PACKAGES=[{"name":"@btafoya/n8n-nodes-zohomail"}]'

Warning: Enabling N8N_COMMUNITY_PACKAGES_MANAGED_BY_ENV=true uninstalls any community packages that are not listed in N8N_COMMUNITY_PACKAGES on startup.

Development

npm install
npm run build   # n8n-node build — compile TypeScript and bundle assets
npm run dev     # n8n-node dev — local n8n preview with hot reload at http://localhost:5678
npm run lint    # n8n-node lint — check code against n8n community node rules

Changelog

See CHANGELOG.md.

Credentials

Create a Zoho Mail OAuth2 API credential:

  1. Choose your Zoho data center.
  2. Enter the OAuth client ID and secret from the Zoho API Console.
  3. Optionally set a default Zoho Mail account ID to use across nodes.

Required scopes are requested automatically.

Operations

Zoho Mail (action node)

  • Account: Get All
  • Folder: Get All
  • Message: Get All, Search, Get, Send, Reply, Delete
  • Message state: Mark as Read/Unread, Move, Flag/Unflag, Add/Remove Label, Remove All Labels, Archive/Unarchive, Spam/Not Spam
  • Attachment: Upload, Get

Zoho Mail Trigger

Polls a folder for new messages using a hybrid cursor (lastReceivedTime + seenMessageIds) to avoid duplicates. Optionally fetch historical messages on first activation.

License

MIT