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

v1.0.1

Published

n8n community nodes for TESE — ESG external API, Tesera AI, OCR, voice entry, anomaly detection, climate risk, platform triggers, webhook triggers, and workflow finalize

Downloads

2,092

Readme

n8n-nodes-tese

This is an n8n community node package. It lets you integrate TESE ESG workflows with n8n — trigger formula/aggregation webhooks, call the external API, and finalize results back to TESE.

Installation

Follow the n8n community nodes installation guide.

npm (self-hosted n8n)

cd ~/.n8n/custom
npm install n8n-nodes-tese

Restart n8n after installing.

Development install

git clone https://github.com/tese-io/n8n-nodes-tese.git
cd n8n-nodes-tese
npm install
npm run build
npm run dev

The dev command starts n8n on http://localhost:5678 with hot reload.

Nodes

| Node | Type | Description | |------|------|-------------| | tese.io | Action | CRUD + FQL operations against tese.io external API | | tese.io Trigger | Trigger | Webhook for activity formula and aggregation events | | tese.io Finalize | Action | Send computed results to tese.io finalize endpoint |

Operations (tese.io node)

Core (v0.1)

Facility, Activity, Metric Catalog, ESG Data, Framework, Audit Request, Report

ESG workflow (v0.2)

Answer Bank, Question Bank, Aggregation, Formula Execution, Sustainability Target, Emission Factor, Framework Pack, Framework Pack Answer, Normalised Answer Bank, Composite KPI, Materiality Assessment, Validation Bank, Reporting Covenant, Evidence Manager, SPT, Device

Reporting & tasks (v0.3)

Reporting Cycle, Task Approval, Task Issue, Task Workflow

See LEARNING.md for the full API parity matrix.

Facility

List, Get, FQL Query, Create, Update, Delete

Activity

List, Get, Create, Update, Archive

Metric Catalog

List, Get, Get By Framework, FQL Query, Resolve By Codes, Get Filters, Create, Update, Delete

ESG Data

FQL Query, Get By Date Range, Get By Category, Get, Create, Update, Delete

Framework

List, Get, FQL Query, Create, Update, Delete

Audit Request

FQL Query, Get, Get By Status, Get User Accessible, Create, Update, Add Message, Delete

Report

List, Get, FQL Query, Get By Period, Check Published Exists, Submit For Review, Approve, Reject

Credentials

Create a tese.io API credential in n8n:

  1. Open CredentialsAdd credential → search tese.io API
  2. Set Base URL to your TESE backend (default https://api.tese.io)
  3. Paste your tenant API Key from TESE Settings → External API keys
  4. Click Test — confirms auth against GET /api/v3/external/facilities?limit=1

| Field | Value | |-------|-------| | Base URL | https://api.tese.io (or your self-hosted backend) | | API Key | Tenant external API key from TESE Settings |

Authentication uses Authorization: Bearer <api_key>. Credentials are stored encrypted by n8n (not by this package).

Example workflow

Import docs/examples/aggregation-finalize-workflow.json into n8n:

  1. tese.io Trigger (Activity Aggregation) receives the webhook payload from TESE
  2. Code node aggregates activity values
  3. tese.io Finalize posts the result back (uses finalize_token from the trigger when present)

Typical workflow

  1. Add tese.io Trigger — choose Activity Formula or Activity Aggregation
  2. Copy the webhook URL into your TESE question n8n config
  3. Process the payload in n8n
  4. Add tese.io Finalize — set value/unit and finalize back to TESE

Use Test workflow on the trigger to load sample fixtures without a live webhook.

Compatibility

  • n8n >= 1.0
  • Node.js >= 18
  • Tested with @n8n/node-cli build toolchain

Resources

Version history

0.3.4

Sync package-lock version with package.json after dependency audit.

0.3.3

Replace placeholder icons with official TESE logo from brand assets. Fix creator template example workflow (eventType, sticky notes, connections).

0.3.2

Verification prep: GitHub Actions publish workflow fix, CI tests, npm provenance config, tese-io author metadata, example workflow JSON.

0.3.1

Add unit tests for v0.3 actions, shared helpers, and credentials. Credential test uses v3 external facilities endpoint.

0.3.0

Add Reporting Cycle, Task Approval, Task Issue, and Task Workflow resources.

0.2.0

Add 16 v3 external API resources (answer bank, question bank, aggregation, formula execution, and more). Refactor action handlers into modular nodes/Tese/actions/ structure. Add question bank loadOptions.

0.1.1

Rebrand node and credential display names to tese.io (internal node IDs unchanged).

0.1.0

Initial release with tese.io action node, tese.io Trigger, and tese.io Finalize nodes.