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

@limetech/n8n-nodes-lime-crm

v1.0.2

Published

n8n community node for Lime CRM — work with objects, files and users, and trigger workflows on CRM events

Readme

@limetech/n8n-nodes-lime-crm

This is an n8n community node. It lets you use Lime CRM in your n8n workflows.

Lime CRM is a customer relationship management platform from Lime Technologies. This package lets you read and write CRM data (lime objects), work with files and users, and trigger workflows on CRM events.

n8n is a fair-code licensed workflow automation platform.

Installation Operations Credentials Compatibility Usage Resources Version history Development

Installation

Follow the installation guide in the n8n community nodes documentation and install @limetech/n8n-nodes-lime-crm.

Operations

Lime CRM

  • Metadata: get all limetypes, get a single limetype, get file metadata.
  • Data: get many objects (with filtering, ordering and pagination), get, create, update and delete a single object, get a file, and bulk create, update or upsert many objects through the bulk-import API (requires the limepkg-mbeku-bulk-import package in the Lime CRM solution).
  • Admin: get many users, get a single user.

Lime CRM Trigger

Starts a workflow when an object of a chosen limetype is created, updated or deleted. The trigger registers a webhook subscription in Lime CRM, verifies the HMAC signature of every delivery with the webhook secret configured in the credential.

Credentials

Create a Lime CRM API credential with:

| Field | Description | | ---------- | ------------------------------------------------------------------------------------- | | Server URL | The URL of your Lime CRM instance, e.g. https://instance.lime-crm.com/instance-name | | API Key | API key generated in Lime CRM (available from Lime Admin) |

Requests are authenticated with the X-API-Key header, which n8n adds automatically. The credential is verified against the /api/v1/ endpoint of your instance when you save it.

To use the trigger, also set the optional Webhook Secret in the credential; Lime CRM signs deliveries with it. Use a strong value, e.g. generated with openssl rand -hex 32.

Compatibility

Requires n8n with n8n-workflow 2.9 or later. Node.js 24 is used for local development.

Usage

Lime CRM: find won deals

  1. Add a Lime CRM node and select your Lime CRM API credential.

  2. Set Resource to Data and Operation to Get Many Objects.

  3. In Limetype, pick deal (From List, or type the name with By Name).

  4. In Filter (JSON), enter a Lime Query DSL filter, for example:

    { "key": "dealstatus", "op": "=", "exp": "won" }
  5. Optionally set Limit (default 50, 0 returns all objects) and Order By.

The node outputs one item per matching object. Each item includes _id, which you can pass to Update an Object or Delete an Object in a later step. Create an Object and Update an Object take their values through Input, either as a Form mapped to the limetype's properties or as a JSON Object.

Lime CRM Trigger: react to a new deal

  1. Add a Lime CRM Trigger node. Under Events, add an event with Limetype deal and Event New (the other options are Update and Delete).
  2. Activate the workflow. The node registers a deal.new webhook subscription in Lime CRM and removes it again when the workflow is deactivated.

Each delivery becomes one item with body, headers and query. The Lime CRM event is in body: body.event is the event name (deal.new) and body.body holds the object's id, limetype and values. For example, {{ $json.body.body.id }} gives the ID of the new deal.

Resources

Version history

The full history is generated by semantic-release in CHANGELOG.md and on the GitHub releases page.

Development

npm ci
npm run build   # compile to dist/
npm test        # jest unit tests
npm run lint    # n8n community node lint rules
npm run knip    # dead code check

License

MIT