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

@mayki-kicas/n8n-nodes-sybase

v0.1.4

Published

n8n community node for Sybase database queries

Readme

n8n-nodes-sybase

Sybase integration for n8n. This community node lets you connect n8n to a Sybase database and run SQL queries inside workflows.

If you are searching for n8n Sybase connector, n8n Sybase node, Sybase SQL in n8n, or SAP SQL Anywhere / Sybase ASE automation, this package is built for that use case.

npm package: @mayki-kicas/n8n-nodes-sybase

What This Node Does

  • Connects n8n to a Sybase database with credentials
  • Executes SQL queries from a workflow node
  • Returns rows as n8n JSON items
  • Supports timeout control per node execution
  • Supports debug logs for troubleshooting connection/query issues

Features

  • Credential: Sybase API
  • Node: Sybase
  • Operation: Execute Query
  • Editable timeout in the node (default: 20000 ms)
  • Optional debug mode with detailed execution logs
  • Compatible with self-hosted n8n

Requirements

  • Node.js >=22.16 (recommended for current n8n versions)
  • Java runtime on the machine running n8n (required by the sybase npm dependency)
  • Network access from n8n to your Sybase host and port

Installation

npm install

Local Development

npm run dev

This starts n8n in development mode with hot reload for your custom node.

Default URL:

  • http://localhost:5678

Build and Lint

npm run lint
npm run build

How to Use in n8n

  1. Add the Sybase node to your workflow.
  2. Create credentials Sybase API with:
  • Host
  • Port
  • Database
  • Username
  • Password
  1. Select operation Execute Query.
  2. Write your SQL in Query.
  3. Optionally set:
  • Timeout In Ms
  • Debug Mode

Example query:

SELECT TOP 10 id, created_at
FROM my_table
ORDER BY created_at DESC;

Troubleshooting

If execution appears stuck:

  • Increase Timeout In Ms (for example 20000 to 60000)
  • Enable Debug Mode
  • Check n8n server logs for lines prefixed with [n8n-sybase]
  • Validate DB connectivity (host, port, firewall, credentials)

If n8n does not start in dev mode:

  • Ensure Node.js version satisfies n8n requirements (>=22.16)

FAQ

Is this node compatible with n8n Cloud?

No. This package uses an external runtime dependency (sybase) and is designed for self-hosted n8n.

Which Sybase products can I use?

It is intended for Sybase-compatible servers where the underlying npm driver works (for example Sybase ASE / SQL Anywhere environments).

Can I use this in production?

Yes, for self-hosted n8n. Validate timeouts, network reliability, and query performance in your environment before rollout.

Keywords

n8n sybase, n8n sybase node, n8n sybase connector, sybase automation, sybase sql workflow, sap sql anywhere n8n, sybase ase n8n, database workflow automation

Release Notes

  • 0.1.2: Scoped npm package rename to @mayki-kicas/n8n-nodes-sybase.