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

@hellotracks/n8n-nodes-hellotracks

v0.1.10

Published

Hellotracks n8n community node for job dispatch workflows.

Downloads

131

Readme

Hellotracks n8n Node

Use Hellotracks jobs in n8n workflows.

The node connects n8n to the Hellotracks public API at https://api.hellotracks.com/v1.

Installation

In a self-hosted n8n instance with community nodes enabled:

  1. Go to Settings -> Community Nodes.
  2. Click Install.
  3. Install:
@hellotracks/n8n-nodes-hellotracks

Restart n8n if prompted. Then add the Hellotracks node to a workflow.

Credentials

Create a Hellotracks credential with:

  • API Key: a Hellotracks public API key

n8n injects the API key into Hellotracks requests using the credential's authentication settings. No API base URL setting is required.

Operations

  • Create Job: POST /jobs
  • Update Job: PATCH /jobs
  • Archive Job: POST /jobs/{id}/archive
  • Delete Job: DELETE /jobs/{id}
  • Find Job: GET /jobs?externalId=...&includeArchived=true&limit=1
  • Find Member: GET /members?query=...&max=50

Create and update support externalId, title, address, notes, date, assigneeUsername, priority, contact fields, and time window fields.

assigneeUsername is the intended assignment field. Do not use assigneeId with this connector.

Field Notes

  • External ID: optional external dedupe key.
  • Job Date: YYYY-MM-DD, for example 2026-05-05.
  • Assignee Username: Hellotracks username, often the member email or login name.
  • Priority (0-10): optional integer from 0 to 10.
  • Window Start and Window End: HH:mm, for example 09:00.

Blank optional fields are omitted before the node calls the Hellotracks API.

Example Workflows

  • Create a Hellotracks job from a Google Sheets row.
  • Find a Hellotracks member by email, then create a job assigned to that member.
  • Find a job by External ID and update its address, notes, date, or assignee.
  • Archive or delete disposable jobs during testing.

Development

cd n8n
npm ci
npm test
npm run lint
npm pack --dry-run

Publishing

Verification-candidate releases are published from GitHub Actions with npm provenance. See PUBLISHING.md.

Support

For product support, contact [email protected].

For package bugs, open an issue at:

https://github.com/Hellotracks/n8n-nodes-hellotracks/issues