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 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-helixdb

v0.1.3

Published

n8n community node to integrate with HelixDB - the time-series database for modern applications

Readme

n8n-nodes-helixdb

This is an n8n community node that provides integration with HelixDB - the time-series database for modern applications.

n8n.io - Workflow Automation

Installation

Follow the installation guide in the n8n community nodes documentation.

Community Package Name

n8n-nodes-helixdb

Features

This node provides comprehensive integration with HelixDB through three main resource types:

📊 Record Operations

  • Insert: Add new records to HelixDB tables
  • Get: Retrieve records by ID
  • Update: Modify existing records
  • Delete: Remove records from tables

🔍 Vector Operations

  • Insert Vector: Add vector embeddings to collections
  • Search Vectors: Find similar vectors using semantic search
  • Delete Vector: Remove vectors from collections

📝 Raw Query Operations

  • Run HelixQL: Execute custom HelixQL queries directly

Credentials

The node requires HelixDB API credentials with the following configuration:

  • Host: HelixDB server hostname or IP address (default: localhost)
  • Port: HelixDB server port (default: 6969)
  • Authentication Type:
    • None (no authentication)
    • Username & Password (basic auth)
    • Bearer Token (token-based auth)

Usage Examples

Insert a Record

{
  "resource": "record",
  "operation": "insert",
  "tableName": "users",
  "recordData": {
    "name": "John Doe",
    "email": "[email protected]",
    "age": 30
  }
}

Search Vectors

{
  "resource": "vector",
  "operation": "searchVectors",
  "collectionName": "embeddings",
  "vectorData": [0.1, 0.2, 0.3, 0.4, 0.5],
  "searchLimit": 10
}

Run Custom HelixQL Query

{
  "resource": "rawQuery",
  "operation": "runHelixQL",
  "helixqlQuery": "QUERY getUsers() => users <- N<User> RETURN users",
  "queryParameters": {}
}

Development

This node was built following the n8n community node development guidelines.

Building

npm run build

Linting

npm run lint
npm run lintfix

Dependencies

  • helix-ts: Official TypeScript client for HelixDB
  • n8n-workflow: n8n workflow types and utilities

Resources

License

MIT

Version History

0.1.0

  • Initial release
  • Record operations (insert, get, update, delete)
  • Vector operations (insert, search, delete)
  • Raw HelixQL query execution
  • Authentication support (none, basic, bearer token)
  • Full TypeScript support