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

ical-builder-ts

v0.1.1

Published

TypeScript library for generating RFC 5545 compliant iCalendar files with a fluent builder API

Downloads

235

Readme

ical-builder-ts

A TypeScript library for generating RFC 5545 compliant iCalendar (.ics) files with a fluent builder API.

  • Full RFC 5545 coverage (VEVENT, VTODO, VJOURNAL, VFREEBUSY, VTIMEZONE, VALARM)
  • RFC 7986 calendar extensions (NAME, COLOR, IMAGE, CONFERENCE, etc.)
  • Fluent builder pattern with method chaining
  • Excellent TypeScript autocompletion and type hints
  • Zero dependencies, universal runtime (Node.js, browser, Deno, Bun)
  • Dual ESM + CJS output

Installation

npm install ical-builder-ts

Quick Start

import {
  CalendarBuilder,
  EventBuilder,
  AlarmBuilder,
  RRuleBuilder,
  Duration,
} from 'ical-builder-ts';

const alarm = new AlarmBuilder()
  .display()
  .trigger(Duration.minutes(15).negate())
  .description('Meeting in 15 minutes')
  .build();

const event = new EventBuilder()
  .summary('Team Standup')
  .description('Daily sync meeting')
  .start(
    { year: 2026, month: 4, day: 13, hour: 9, minute: 0 },
    { tzid: 'Europe/Rome' },
  )
  .duration(Duration.minutes(30))
  .location('Conference Room A')
  .rrule(
    new RRuleBuilder().freq('WEEKLY').byDay('MO', 'WE', 'FR').count(52),
  )
  .organizer('[email protected]', { cn: 'The Boss' })
  .attendee('[email protected]', { cn: 'Developer', rsvp: true })
  .alarm(alarm)
  .build();

const ics = new CalendarBuilder()
  .prodId('-//MyApp//ical-builder-ts//EN')
  .event(event)
  .autoTimezones()  // auto-adds VTIMEZONE for Europe/Rome
  .build()
  .toString();

// ics is now a valid .ics file string

Date/Time Input

All builder methods that accept dates use the DateInput type, which can be:

// Date-only (VALUE=DATE) — for all-day events
{ year: 2026, month: 4, day: 13 }

// Floating local time (no timezone)
{ year: 2026, month: 4, day: 13, hour: 9, minute: 0 }
// with optional seconds:
{ year: 2026, month: 4, day: 13, hour: 9, minute: 0, second: 30 }

// With timezone (via options)
builder.start(
  { year: 2026, month: 4, day: 13, hour: 9, minute: 0 },
  { tzid: 'Europe/Rome' },
)

// Native Date object — converted to UTC
new Date('2026-04-13T07:00:00Z')

// ISO 8601 string — parsed as Date, converted to UTC
'2026-04-13T07:00:00Z'

Components

VCALENDAR

The top-level container. VERSION defaults to 2.0.

const cal = new CalendarBuilder()
  .prodId('-//MyApp//ical-builder-ts//EN')  // required
  .method('PUBLISH')
  .calScale('GREGORIAN')
  // RFC 7986 extensions
  .name('Work Calendar')
  .color('steelblue')
  .source('https://example.com/cal.ics')
  .refreshInterval(Duration.hours(1))
  .image('https://example.com/logo.png', {
    fmttype: 'image/png',
    display: 'BADGE',
  })
  .event(event)
  .todo(todo)
  .timezone(tz)
  .build();

VEVENT

const event = new EventBuilder()
  // Identity (auto-generated if omitted)
  .uid('unique-id')
  .dtstamp(new Date())

  // Timing
  .start({ year: 2026, month: 4, day: 13, hour: 9, minute: 0 }, { tzid: 'Europe/Rome' })
  .end({ year: 2026, month: 4, day: 13, hour: 10, minute: 0 }, { tzid: 'Europe/Rome' })
  // OR use duration (mutually exclusive with .end())
  // .duration(Duration.hours(1))

  // Details
  .summary('Team Meeting')
  .description('Weekly sync\nWith agenda attached')
  .location('Room 42', { altrep: 'https://example.com/rooms/42' })
  .url('https://example.com/event/123')
  .geo(45.4642, 9.1900)

  // Classification
  .status('CONFIRMED')        // 'TENTATIVE' | 'CONFIRMED' | 'CANCELLED'
  .classification('PUBLIC')   // 'PUBLIC' | 'PRIVATE' | 'CONFIDENTIAL'
  .transparency('OPAQUE')     // 'OPAQUE' | 'TRANSPARENT'
  .priority(5)                // 0-9
  .sequence(0)

  // Categorization
  .categories('MEETING', 'WORK')
  .resources('PROJECTOR', 'WHITEBOARD')

  // People
  .organizer('[email protected]', { cn: 'The Boss', language: 'en' })
  .attendee('[email protected]', {
    cn: 'Developer',
    role: 'REQ-PARTICIPANT',
    partstat: 'ACCEPTED',
    rsvp: true,
    cutype: 'INDIVIDUAL',
    member: '[email protected]',
  })

  // Attachments
  .attach('https://example.com/agenda.pdf', { fmttype: 'application/pdf' })

  // Conference (RFC 7986)
  .conference('https://zoom.us/j/123456', {
    label: 'Zoom Meeting',
    feature: ['VIDEO', 'AUDIO'],
  })

  // Relationships
  .relatedTo('parent-uid', { reltype: 'PARENT' })
  .contact('Support Team, +1-555-1234')

  // Recurrence
  .rrule(new RRuleBuilder().freq('WEEKLY').byDay('MO', 'WE', 'FR'))
  .exdate({ year: 2026, month: 4, day: 15, hour: 9, minute: 0 }, { tzid: 'Europe/Rome' })

  // Alarms
  .alarm(alarm)

  // Custom properties
  .xProp('X-CUSTOM-FIELD', 'value')

  .build();

VTODO

const todo = new TodoBuilder()
  .summary('Complete project report')
  .start({ year: 2026, month: 4, day: 13, hour: 9, minute: 0 })
  .due({ year: 2026, month: 4, day: 20, hour: 17, minute: 0 })
  // OR use duration (mutually exclusive with .due())
  // .duration(Duration.days(7))
  .status('IN-PROCESS')          // 'NEEDS-ACTION' | 'COMPLETED' | 'IN-PROCESS' | 'CANCELLED'
  .priority(1)
  .percentComplete(50)
  .completed(new Date('2026-04-18T15:00:00Z'))  // must be DATE-TIME (not date-only)
  .resources('LAPTOP')
  .build();

VJOURNAL

const journal = new JournalBuilder()
  .start({ year: 2026, month: 4, day: 13 })
  .summary('Sprint Retrospective')
  .description('Went well: deployment pipeline improvements')
  .description('To improve: test coverage')  // multiple descriptions allowed
  .status('FINAL')  // 'DRAFT' | 'FINAL' | 'CANCELLED'
  .categories('MEETING', 'RETRO')
  .build();

VFREEBUSY

const fb = new FreeBusyBuilder()
  .start(new Date('2026-04-13T00:00:00Z'))
  .end(new Date('2026-04-14T00:00:00Z'))
  .freeBusy('20260413T090000Z/20260413T100000Z', 'BUSY')
  .freeBusy('20260413T120000Z/PT1H', 'BUSY-TENTATIVE')
  .contact('Scheduling System')
  .build();

VTIMEZONE

The library includes a built-in database of ~80 IANA timezones. You can use them directly or build custom definitions.

Using the built-in database (recommended):

import { Timezone } from 'ical-builder-ts';

// Get a pre-built timezone
const rome = Timezone.get('Europe/Rome');
const nyc = Timezone.get('America/New_York');

// Add to calendar
new CalendarBuilder()
  .prodId('-//MyApp//EN')
  .timezone(rome)
  .timezone(nyc)
  .event(event)
  .build();

// Or auto-detect from events — scans TZID parameters and adds matching VTIMEZONEs
new CalendarBuilder()
  .prodId('-//MyApp//EN')
  .event(eventWithTzidEuropeRome)
  .event(eventWithTzidAmericaNewYork)
  .autoTimezones()  // adds both VTIMEZONE automatically
  .build();

// Check available timezones
Timezone.has('Europe/Rome');    // true
Timezone.availableIds();        // ['Africa/Accra', 'Africa/Addis_Ababa', ..., 'UTC']

Building a custom timezone manually:

const standard = new TimezoneRuleBuilder('STANDARD')
  .start({ year: 1970, month: 10, day: 25, hour: 3, minute: 0 })
  .offsetFrom('+0200')
  .offsetTo('+0100')
  .tzName('CET')
  .rrule(new RRuleBuilder().freq('YEARLY').byMonth(10).byDay('-1SU'))
  .build();

const daylight = new TimezoneRuleBuilder('DAYLIGHT')
  .start({ year: 1970, month: 3, day: 29, hour: 2, minute: 0 })
  .offsetFrom('+0100')
  .offsetTo('+0200')
  .tzName('CEST')
  .rrule(new RRuleBuilder().freq('YEARLY').byMonth(3).byDay('-1SU'))
  .build();

const tz = new TimezoneBuilder()
  .tzId('Europe/Rome')
  .standard(standard)
  .daylight(daylight)
  .build();

VALARM

// Display alarm — 15 minutes before
new AlarmBuilder()
  .display()
  .trigger(Duration.minutes(15).negate())
  .description('Meeting starting soon')
  .build()

// Audio alarm with sound file
new AlarmBuilder()
  .audio()
  .trigger(Duration.minutes(5).negate())
  .attach('https://example.com/bell.wav', { fmttype: 'audio/wav' })
  .build()

// Email alarm with repeat
new AlarmBuilder()
  .email()
  .trigger(Duration.hours(1).negate())
  .summary('Reminder: Meeting')
  .description('Your meeting starts in 1 hour')
  .attendee('[email protected]')
  .repeat(2)
  .duration(Duration.minutes(5))
  .build()

// Absolute trigger (specific date/time)
new AlarmBuilder()
  .display()
  .trigger(new Date('2026-04-13T08:45:00Z'))
  .description('Reminder')
  .build()

// Trigger relative to event end
new AlarmBuilder()
  .display()
  .trigger(Duration.minutes(5), { related: 'END' })
  .description('Follow-up')
  .build()

Duration

Immutable value object for RFC 5545 durations. Each method returns a new instance.

Duration.hours(1).withMinutes(30).toString()  // 'PT1H30M'
Duration.days(2).toString()                    // 'P2D'
Duration.weeks(1).toString()                   // 'P1W'
Duration.minutes(15).negate().toString()       // '-PT15M'
Duration.days(1).withHours(6).toString()       // 'P1DT6H'

Recurrence Rules

// Every weekday
new RRuleBuilder().freq('DAILY').byDay('MO', 'TU', 'WE', 'TH', 'FR')

// Every 2 weeks on Monday
new RRuleBuilder().freq('WEEKLY').interval(2).byDay('MO')

// Monthly on the 15th, 52 occurrences
new RRuleBuilder().freq('MONTHLY').byMonthDay(15).count(52)

// Yearly on the last Friday of March
new RRuleBuilder().freq('YEARLY').byMonth(3).byDay('-1FR')

// Every day at 9:00 and 17:00 until end of year
new RRuleBuilder()
  .freq('DAILY')
  .byHour(9, 17)
  .byMinute(0)
  .until({ year: 2026, month: 12, day: 31 })

// Last weekday of every month
new RRuleBuilder()
  .freq('MONTHLY')
  .byDay('MO', 'TU', 'WE', 'TH', 'FR')
  .bySetPos(-1)

// You can also pass raw RRULE strings
event.rrule('FREQ=DAILY;COUNT=5')

Text Property Options

Text properties (summary, description, location, comment, contact) support ALTREP and LANGUAGE parameters:

event
  .summary('Team Meeting', { language: 'en' })
  .description('Full agenda', {
    altrep: 'https://example.com/agenda.html',
    language: 'en',
  })
  .location('Conference Room', {
    altrep: 'https://example.com/rooms/conf',
  })

Recurrence Date Periods

RDATE supports VALUE=PERIOD for specifying time ranges as recurrence dates:

event
  .rdatePeriod('20260413T090000Z/20260413T100000Z')  // start/end
  .rdatePeriod('20260414T090000Z/PT1H')              // start/duration

Validation

Builders validate required properties and constraints at .build() time:

import { ICalValidationError } from 'ical-builder-ts';

try {
  new EventBuilder().build();  // no DTSTART set
} catch (e) {
  if (e instanceof ICalValidationError) {
    console.log(e.message);   // 'VEVENT requires a DTSTART property'
    console.log(e.property);  // 'DTSTART'
  }
}

Validations include:

  • Required properties (DTSTART on VEVENT, PRODID on VCALENDAR, etc.)
  • Mutually exclusive properties (DTEND/DURATION, DUE/DURATION, UNTIL/COUNT)
  • Action-dependent VALARM requirements (DISPLAY needs DESCRIPTION, EMAIL needs SUMMARY + ATTENDEE)
  • COMPLETED must be DATE-TIME, not date-only

UID and DTSTAMP are auto-generated if not explicitly set.

Serialization

.build() produces an immutable model object. Call .toString() to serialize to iCalendar format:

const cal = new CalendarBuilder()
  .prodId('-//MyApp//EN')
  .event(event)
  .build();

const icsString = cal.toString();

// Write to file (Node.js)
import { writeFileSync } from 'node:fs';
writeFileSync('calendar.ics', icsString);

// Send as HTTP response
res.setHeader('Content-Type', 'text/calendar; charset=utf-8');
res.send(icsString);

The serializer handles:

  • CRLF line endings (per RFC 5545)
  • Line folding at 75 octets (UTF-8 byte-aware)
  • Text escaping (backslash, semicolon, comma, newlines)

RFC Coverage

RFC 5545 — Core

| Component | Builder | Properties | |-----------|---------|------------| | VCALENDAR | CalendarBuilder | VERSION, PRODID, CALSCALE, METHOD | | VEVENT | EventBuilder | All 30+ properties | | VTODO | TodoBuilder | All 30+ properties | | VJOURNAL | JournalBuilder | All 25+ properties | | VFREEBUSY | FreeBusyBuilder | All 12 properties | | VTIMEZONE | TimezoneBuilder | TZID, TZURL, LAST-MODIFIED | | STANDARD/DAYLIGHT | TimezoneRuleBuilder | DTSTART, TZOFFSETFROM/TO, TZNAME, RRULE, RDATE | | VALARM | AlarmBuilder | ACTION, TRIGGER, DESCRIPTION, SUMMARY, ATTENDEE, ATTACH, REPEAT, DURATION |

All 20 property parameters: ALTREP, CN, CUTYPE, DELEGATED-FROM, DELEGATED-TO, DIR, ENCODING, FMTTYPE, FBTYPE, LANGUAGE, MEMBER, PARTSTAT, RANGE, RELATED, RELTYPE, ROLE, RSVP, SENT-BY, TZID, VALUE.

RFC 7986 — Calendar Extensions

NAME, DESCRIPTION, UID, URL, LAST-MODIFIED, CATEGORIES, REFRESH-INTERVAL, SOURCE, COLOR, IMAGE, CONFERENCE.

TypeScript Types

All enums are string literal unions for tree-shaking and debuggability:

type EventStatus = 'TENTATIVE' | 'CONFIRMED' | 'CANCELLED';
type TodoStatus = 'NEEDS-ACTION' | 'COMPLETED' | 'IN-PROCESS' | 'CANCELLED';
type JournalStatus = 'DRAFT' | 'FINAL' | 'CANCELLED';
type Classification = 'PUBLIC' | 'PRIVATE' | 'CONFIDENTIAL';
type Transparency = 'OPAQUE' | 'TRANSPARENT';
type Frequency = 'SECONDLY' | 'MINUTELY' | 'HOURLY' | 'DAILY' | 'WEEKLY' | 'MONTHLY' | 'YEARLY';
type Weekday = 'SU' | 'MO' | 'TU' | 'WE' | 'TH' | 'FR' | 'SA';
type AlarmAction = 'AUDIO' | 'DISPLAY' | 'EMAIL';
type FreeBusyType = 'FREE' | 'BUSY' | 'BUSY-UNAVAILABLE' | 'BUSY-TENTATIVE';
type ParticipationStatus = 'NEEDS-ACTION' | 'ACCEPTED' | 'DECLINED' | 'TENTATIVE' | 'DELEGATED';
type Role = 'CHAIR' | 'REQ-PARTICIPANT' | 'OPT-PARTICIPANT' | 'NON-PARTICIPANT';

License

MIT