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-anaplan-fixed

v1.0.22

Published

Anaplan node for n8n

Readme

Banner image

n8n-nodes-anaplan

An n8n custom node for seamless integration with Anaplan.
Supports reading, writing, and importing data from Anaplan models, workspaces, and lists.


🚀 Installation

npm install n8n-nodes-anaplan

After installation, set the following environment variable:

export N8N_CUSTOM_EXTENSIONS="/path/to/n8n-nodes-anaplan"
n8n

🛠 Supported Operations

✅ Read Data • Fetch Workspaces – Retrieves available workspaces. • Fetch Models – Lists active (unlocked) models. • Fetch Modules – Retrieves module views. • Fetch Lists – Retrieves list metadata and items. • Fetch Dimension Items – Fetches dimension values.

📤 Export Formats • TABULAR_SINGLE_COLUMN • TABULAR_MULTI_COLUMN • JSON Format (Structured row-based data)

✏️ Write Data • Update Module Cells – Supports multiple line items and multiple dimensions. • Import Module Data – Uploads structured data into Anaplan modules. • Import List Data – Uploads structured data into Anaplan lists.

📁 File Handling • Upload Files to Anaplan – Supports single and chunked file uploads. • Monitor Import Status – Tracks import task progress.

Login & Password • Uses username and password to acquire a session token. • Token expires every 35 minutes but is automatically refreshed. • Requires Workspace Admin privileges.

  1. Generate a token:
curl -X POST --user email:'password' https://auth.anaplan.com/token/authenticate
  1. Copy tokenValue and store it in n8n credentials.

📊 Usage Guide

1️⃣ Select a Workspace 2️⃣ Choose an Active Model (Only unlocked models appear) 3️⃣ Select a Module or List (Data source) 4️⃣ Choose Export Format: • Tabular Single Column → (Row-by-row processing) • Tabular Multi Column → (UI-like view) • JSON Format → (For structured automation) 5️⃣ Run the node → Get structured table output with headers & values.

🔗 API Reference • Anaplan API Docs • Authentication Guide • Anaplan REST API Reference

📢 Compatibility • ✅ Minimum n8n version: 1.60.0 • ✅ Tested with: 1.77.3 • ✅ **Supports Anaplan API v2`

⚖️ License

MIT License


Final Notes

  • Confluence Documentation now reflects current authentication methods and API operations.
  • README now includes new features like Import, File Handling, and Multi-Export Formats.
  • All instructions are aligned with current Anaplan API functionality.

This ensures full documentation coverage for both developers & users. 🚀