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

red-snowflake

v0.1.3

Published

A Node-RED node to read and write to a Snowflake database using JDBC

Readme

node-red-incorta

Node-RED nodes to read and write to a Snowflake database.

Pre-requisites

These modules are installed as part of a Node-RED environment. Node-RED is a tool for wiring together hardware devices, APIs and online services in new and interesting ways, these Snowflake nodes allow Node-Red to use Snowflake as a datasource.

Installation of the Node-Red environment is described here : Node-Red Getting Started.

You will need a Snowflake Database to connect to, this is available here: Snowflake database.

Connection to the snowflake will require jdbc and java modules. These will be installed by npm in the following "Install" step.

Install

To install from the npm website, run the following command in the Node-RED install home directory of your user, typically ~/.nodered

npm install node-red-snowflake

To install from a local zip file, run the following command in theNode-RED install home directory of your user:

npm install {path to file}/node-red-snowflake-0.1.1.tgz

The snowflake.jar file containing the JDBC driver is part of the Incorta database installation (usually found in {snowflake-install-directory}/libs). This should be copied into {node-red-user-directory}/node_modules/node-red-snowflake/jars.

Usage

Allows basic access to a Snowflake database using the JDBC protocol

This node uses SQL to query or update the configured database. By it's very nature it allows SQL injection... so be careful out there...

The result rows can be sent together as an array or as individual messages.

A Server configuration specifies the server, database and credentials to access.

Node Red Nodes

There are one node red nodes:

  • snowflake sql - executes any sql query within the Snowflake environment, allows complex queries.

snowflake sql

Queries a Snowflake database based on a configured SQL query string.

The Query can be specified as a template including "mustache" format tags, which are then substituted for values from the input message.

e.g. SELECT * FROM {{{payload.table}}} WHERE ID = '{{{payload.id}}}' substitutes msg.payload.table and msg.payload.id into the query.

e.g. {{{msg.sql}}} will execute the SQL specified in the sql property of the incoming message, allowing the node red flow to formulate the query.

The result is returned in the outgoing message payload. The results can be returned as individual messages or a single array in one message.

Server configurations

Each Snowflake node has a link to a shared Server configuration. A number of Server configurations can be set to allow access to multiple Snowflake databases. Each Server configuration specifies the server, database and credentials to access.