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

v2.1.1

Published

n8n community node for Atlas Eye CRM — manage leads, pipelines, tags, users, messages, and notifications.

Readme

n8n-nodes-atlaseye

This is an n8n community node that integrates with Atlas Eye CRM, allowing you to automate your CRM workflows directly from n8n.

Atlas Eye

Installation

Community Nodes (Recommended)

  1. Go to Settings → Community Nodes in your n8n instance
  2. Select Install a community node
  3. Enter n8n-nodes-atlaseye
  4. Agree to risks and click Install

Manual Installation

cd ~/.n8n/nodes
npm install n8n-nodes-atlaseye

Then restart your n8n instance.

Configuration

  1. Create an API Token in Atlas Eye: Settings → API
  2. In n8n, create new credentials of type Atlas Eye API
  3. Paste your API token (starts with atl_)
  4. Set the Base URL of your Atlas Eye instance

Available Resources & Operations

| Resource | Operations | |----------|-----------| | Lead | List, Create, Update | | Lead Message | Send Message | | Lead History | Add Event, Edit Event, Delete Event | | Pipeline | List, Get, Create, Update, Delete | | Pipeline Stage | List, Get, Create, Update, Delete, List Colors | | User | List, Invite, Remove | | Notification | Send (single or broadcast) |

Lead Operations

List Leads

Retrieve a paginated list of leads with optional filters:

  • Search Query: Search by name, email, or phone
  • Phone: Filter by phone number
  • Assigned To: Filter by member ID
  • Status: Filter by stage name
  • Tags: Filter by specific tags
  • Pipeline ID: Filter by pipeline

Create Lead

Create a new lead with name, email, phone, pipeline, status, tags, and assignment.

Update Lead

Update lead fields including name, email, phone, assignment, pipeline, status, tags, and custom fields.

Lead Message Operations

Send Message

Send a message to a lead's chat. Supports:

  • Types: WhatsApp, Note, Email, System
  • Direction: Inbound or Outbound
  • Media Type: Image, Video, Audio, Document, Sticker
  • Reply To Message ID: Reply to a specific quoted message

Pipeline Operations

Full CRUD operations on pipelines and their stages, including:

  • Create pipelines and stages with colors and ordering
  • Update names, colors, and positions
  • Soft-delete pipelines and stages

Notification Operations

Send Notification

Send notifications to:

  • A specific member by providing their Member ID
  • All members (broadcast) by leaving the recipient empty

Notification types: info, warning, success, error.

Source Field

All mutating operations require a source field. This identifies who triggered the action:

| Value | Description | |-------|-------------| | ai_agent | Triggered by an AI agent / automation (default) | | human | Triggered by a human action | | system | Triggered by a system process |

Example Workflow

[Webhook] → [Atlas Eye: Create Lead] → [Atlas Eye: Send Message] → [Atlas Eye: Send Notification]
  1. A webhook receives a new contact from your website
  2. Atlas Eye creates a new lead in the correct pipeline
  3. A welcome note is sent to the lead's chat
  4. A notification alerts your sales team

Development

# Install dependencies
npm install

# Build
npm run build

# Watch mode
npm run dev

License

MIT