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

v0.1.0

Published

n8n node to connect and interact with Azure SQL databases with dynamic database selection

Readme

Banner image

n8n-nodes-azuresql

This package contains nodes to integrate with Azure SQL databases in n8n.

Included Nodes

Azure SQL

This node allows you to interact with Azure SQL databases. It is based on the Microsoft SQL node but adds the ability to dynamically change the database name within the node itself, allowing you to switch databases based on workflow data instead of having the database hardcoded in the credentials.

Key Features

  • Dynamic Database Selection: Change the database within the node based on workflow data
  • Execute SQL Queries: Run custom SQL queries against your Azure SQL database
  • CRUD Operations: Insert, update, and delete data with ease
  • Flexible Connection Options: Configure connection settings including TLS, timeouts, and more

Operations

  • Execute Query: Run custom SQL queries
  • Insert: Add new rows to a table
  • Update: Modify existing rows in a table
  • Delete: Remove rows from a table

Prerequisites

You need the following installed on your development machine:

  • git
  • Node.js and npm. Minimum version Node 20. You can find instructions on how to install both using nvm (Node Version Manager) for Linux, Mac, and WSL here. For Windows users, refer to Microsoft's guide to Install NodeJS on Windows.
  • Install n8n with:
    npm install n8n -g

Installation

For Production Use

Follow these steps to install this node package in your n8n instance:

npm install n8n-nodes-azuresql

For more information on installing community nodes, see the n8n documentation.

For Development

To test this node during development:

Setup n8n Custom Directory

First, make sure you have the n8n custom directory set up:

Windows:

.\setup-n8n-custom.bat

Linux/Mac:

chmod +x setup-n8n-custom.sh
./setup-n8n-custom.sh

Build and Link

Then build and link the node:

npm run build
npm link
cd ~/.n8n/custom
npm link n8n-nodes-azuresql

Start n8n:

n8n start

You should now see the Azure SQL node when you search for it in the nodes panel.

Usage

  1. Create an Azure SQL credential in n8n
  2. Add the Azure SQL node to your workflow
  3. Configure the node with your desired operation
  4. Optionally specify a database name to override the one in the credentials

Resources

License

MIT

Publishing to npm

This package is ready to be published to the npm registry. Follow these steps to publish:

Prerequisites

  1. Create an npm account if you don't have one: npm signup
  2. Login to npm from your terminal: npm login

Publishing

Using the provided scripts (recommended)

These scripts will build the package, publish it, and add appropriate dist-tags:

Windows:

.\publish-with-tags.bat

Linux/Mac:

chmod +x publish-with-tags.sh
./publish-with-tags.sh

Manual publishing

  1. Build the package: npm run build
  2. Publish the package: npm publish
  3. Add dist-tags (optional):
    npm dist-tag add [email protected] latest
    npm dist-tag add [email protected] v0
    npm dist-tag add [email protected] v0.1

Versioning

This package follows Semantic Versioning:

  • Major version (x.0.0): Incompatible API changes
  • Minor version (0.x.0): Add functionality in a backward-compatible manner
  • Patch version (0.0.x): Backward-compatible bug fixes

To update the version before publishing:

  1. Edit the version in package.json
  2. Run npm version [major|minor|patch] to update the version