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-monday-parser

v1.0.8

Published

Custom n8n node for parsing and structuring Monday.com data with advanced column type handling

Downloads

85

Readme

n8n-nodes-monday-parser

Custom n8n node for parsing and structuring Monday.com data with advanced column type handling.

Description

This node provides comprehensive parsing of Monday.com data, transforming complex column values into structured, easily accessible formats. It supports all major Monday.com column types and provides both detailed and simplified data representations.

Installation

Via npm (Recommended)

ash npm install n8n-nodes-monday-parser

Via n8n Community Nodes

  1. Go to Settings Community Nodes in n8n
  2. Click "Install a community node"
  3. Enter: 8n-nodes-monday-parser
  4. Click Install

Via Environment Variable (for self-hosted)

ash N8N_COMMUNITY_PACKAGES=n8n-nodes-monday-parser

Usage

  1. Add the "Monday Parser" node to your workflow
  2. In the Input JSON field, provide your Monday.com data in JSON format
  3. The node will automatically parse and structure the data

Supported Column Types

The node supports parsing of all Monday.com column types:

  • Basic Types: text, numbers, checkbox, status
  • People & Teams: people assignments with counts
  • Dates & Time: date, timeline, time tracking, world clock
  • Files & Media: file attachments, images
  • Relations: board relations, dependencies, mirror columns
  • Communication: email, phone, link columns
  • Advanced: location, country, rating, vote, formula
  • Custom: tags, dropdown, color, button
  • And many more...

Input Format

The node expects Monday.com data in JSON format. Example:

json { "id": "123456789", "name": "Sample Item", "created_at": "2023-01-01T00:00:00Z", "state": "active", "column_values": [ { "id": "status", "type": "status", "value": "{\"index\": 1, \"label\": \"Working on it\"}", "text": "Working on it", "column": {"title": "Status"} } ] }

Output Format

The node returns structured data with:

  • Parsed column values with type-specific formatting
  • Mappable values for easy workflow integration
  • Metadata including board, group, and timing information

json { "id": "123456789", "name": "Sample Item", "column_values": [...], "mappable_column_values": { "status": "Working on it", "checkbox": {"checked": true, "text": "Done"} } }

Features

  • Complete column type support - Handles all Monday.com column types
  • Smart JSON parsing - Automatically handles string and object values
  • Error handling - Graceful fallbacks for malformed data
  • Type safety - TypeScript implementation with proper typing
  • Performance optimized - Efficient parsing algorithms
  • Easy integration - Clean, structured output for workflow use

Development

`ash

Install dependencies

npm install

Build the project

npm run build

Development mode

npm run dev

Lint code

npm run lint `

License

MIT

Support

For issues and feature requests, please visit the GitHub repository.