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

v3.1.1

Published

n8n node to parse ICS calendar files and query events

Readme

n8n-nodes-ics-parser

version repo

n8n node to parse ICS calendar files and query events

This node integrates @sebse-tools/ics-parser into n8n workflows, enabling parsing and querying of iCalendar (.ics) data directly inside your automations.

Parameters

| Parameter | Type | Description | | --------------------- | -------- | ----------------------------------------------------------------------------------- | | Input Type | Options | Binary File or ICS String. | | Input Data Field Name | String | Binary only. Name of the binary field on the input item containing the .ics file. | | ICS String | String | String only. Raw ICS calendar content. | | Start Date | DateTime | Start of the date range, inclusive. | | End Date | DateTime | End of the date range, inclusive. |

Output. One item per event occurrence found in the range.

Usage

Typical workflow: Fetch and Query

HTTP Request  →  ICS Parser
  1. HTTP Request node. GET your calendar URL, e.g. a CalDAV public share or a .ics file URL. Set Response Format to File to receive binary output, or Text to pass the raw string.

  2. ICS Parser.

  • Binary file input: set Input Type to Binary File and Input Data Field Name to data.
  • Text input: set Input Type to ICS String and map the response body to ICS String via an expression, e.g. {{ $json.body }}.
  • Set Start Date and End Date using expressions or fixed values, e.g. {{ $now }} and {{ $now.plus(7, 'days') }}.

Example. Weekly agenda digest

Schedule Trigger (every Monday)
  → HTTP Request (fetch calendar .ics)
  → ICS Parser
      Input Type:  Binary File, field "data"
      Start Date:  {{ $now.startOf('week') }}
      End Date:    {{ $now.endOf('week') }}
  → Send Email, Slack, etc.

Recent Changes

Version 3.1.0

  • c8401d3: make start and end dates optional

Version 3.0.2

  • 49c86bc: move n8n-workflow to optional peerDependencies

Version 3.0.1

  • a6e5800: move n8n-workflow to peerDependencies

Authors

  • sebse

License

This project is licensed under the AGPL-3.0-only License. See the LICENSE file for details.