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 🙏

© 2024 – Pkg Stats / Ryan Hefner

n8n-nodes-couchbase

v0.1.5

Published

N8N Node to add, get, update, delete import and query data to couchbase

Downloads

21

Readme

N8N Nodes Couchbase

The Couchbase node allows you to automate documents in Couchbase. n8n has built-in support for a wide range of Couchbase features, including executing, inserting, updating, removing, importing, querying and finding documents. n8n is a free and source-available workflow automation platform.

Use this connector

To install a community node in your n8n instance :

		•	Go to Settings > Community Nodes :
		•	Select 'Install a community node'
		•	Type in "n8n-nodes-couchbase" and hit Install

For more information on installing community nodes, visit the Community nodes docs page.

Features

		•	Create documents
		•	Read documents
		•	Update documents
		•	Delete documents
		•	Import documents
		•	Query documents

Couchbase Credentials

Create a Couchbase account and you will need to input the following:

		•	Connection String

			1.	Couchbase Server, you can use this connection string couchbase://127.0.0.1/?connectionTimeout=1200

			2.	Couchbase Capella, you can navigate to the tab named Connect and copy the connection string.

		•	Username
		•	Password
		•	Bucket
		•	Scope
		•	Collection

Those credentials are needed in order for you to connect to Couchbase.

Example Usage

This workflow allows you to insert a document into a Couchbase. This example usage workflow would use the following three nodes. - Start - Set - Couchbase

The final workflow should look like the following image.

  1. Start node The start node exists by default when you create a new workflow.

  2. Set node

    	1.	Click on the Add Value button and select 'String' from the dropdown list.
    	2.	Enter the Property Name of the Value in the Name field.
    	3.	Enter the value for the name in the Value field.
    	4.	Click on Execute Node to run the node.
  3. Couchbase node (Inserting Data)

    	1.	Select 'Insert' from the Operation dropdown list.
    	2.	You will have to enter credentials for the Couchbase. Click the Couchbase Node and enter your credentials.
    	3.	At the bottom, enter the value that you want to insert in Couchbase.
    	4.	Click on Execute Node to run the node.