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

v1.1.3

Published

This package contains two nodes for n8n which can be used to interact with Ninox.

Downloads

7

Readme

Ninox Nodes for n8n

This community package contains two nodes to integrate your Ninox Database with n8n.

n8n is a fair-code licensed workflow automation platform.

It adds two nodes:

| Ninox Node | Ninox Trigger Node | | ------------- | ------------- | | Operations: List, read, create, update delete Records and files and run Ninox Scripts | Events: on create or change of records via polling |

Supported Operations
Installation
Credentials
Compatibility
Notes for an improvement
Resources
Integration Approach
About
Version History

Supported Operations

| Operation | Description | Options | | ------------- | ------------- | ------------- | | List | List records of a table | Return all records OR Paginate trough them, Sorting, Filtering (eq. search), Created Since Sequence, Created Since ID | | Read | Get record of a table by ID | - | | Create | Create a new record in a table | add all fields or define a specific subset | | Update | Update a record in a table by ID | update all fields or define a specific subset | | Delete | Delete a record in a table by ID | - | | List Attached Files | Get the attached files of a record by ID | - | | Download Attached File | Get the actual binary of a attachment by file name | - | | Upload File Attachment | Upload a new file to record | optional: add an Attachment Field ID or Name. When defined, the file will be uploaded into the field | | Delete Attached File | Remove a attached file from record by file name | - | | Ninox Script | Send and run a Ninox Script to query data or run actions on your Ninox database | - |

Installation

Follow the installation guide in the n8n community nodes documentation.

Credentials

Since the nodes communicate with the Ninox REST API you'll have to obtain an Ninox API Key and add it as Ninox API Credential in n8n.io.

Follow these steps as you can find in the api docs of Ninox:

  1. Visit ninox.com.
  2. Click the Start Ninox button to open the web app.
  3. If you don't see the Start Ninox button, log in with your Ninox credentials first.
  4. In the top-right corner, click the Actions gear icon.
  5. In the drop-down menu, select Integrations.
  6. In the pop-up window, click the Generate button.
  7. Copy the API key to your clipboard.
  8. Create a new Ninox API Credential in your n8n instance
  9. Add the API key.

Keep in mind: This API ley provides access to all your Ninox teams and all the Ninox databases of these teams. You should handle this key with care.

Credentials for Ninox Private Cloud & Ninox On-Premise

Basicly the same steps as for Public Cloud users. You just need to define a Custom URL in the n8n credentials for Ninox. Your URL will be something like https://mycompany.ninox.com/v1 for Private Cloud users and https://myninox.mydomain.com/v1 for On-Premise users.

Compatibility

The Latest Version of n8n. If you encounter any problem, feel free to open an issue on Github.

Notes for an improvement

Currently the Create and Update operation run a request for each Item. It would be an optimization to batch these additions in a single request since the Ninox API supports that. But at this moment I was not able to make that request in the declarative implementation in n8n of this node. I might add this in the future.

Resources

Integration Approach

This node communicates with the Ninox REST API. The CRUD Operations are simple REST-API calls. For the Trigger Node I choosed to work with the sequence id. Everytime a change is made or a record is created the sequence number in your ninox table will be incremented by one. That made it pretty easy to get the difference between two sequences.

About

Version History

1.1.2

  • Added dynamical loaded dropdowns for TeamID, DatabaseID & TeamID

1.1.1

  • Fix wrong baseURL for Credentials testing

1.1.0

  • Upload File Attachment: new optional option "Attachment Field"
  • Credentials: added custom base url for Ninox on-prem & private cloud users