@fullcalendar/rrule
TypeScript icon, indicating that this package has built-in type declarations

6.1.18 • Public • Published

FullCalendar RRule Plugin

Recurring events with RRule

Installation

First, ensure the RRule lib is installed:

npm install rrule

Then, install the FullCalendar core package, the RRule plugin, and any other plugins (like daygrid):

npm install @fullcalendar/core @fullcalendar/rrule @fullcalendar/daygrid

Usage

Instantiate a Calendar with the necessary plugin:

import { Calendar } from '@fullcalendar/core'
import rrulePlugin from '@fullcalendar/rrule'
import dayGridPlugin from '@fullcalendar/daygrid'

const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
  plugins: [
    rrulePlugin,
    dayGridPlugin
  ],
  initialView: 'dayGridMonth',
  events: [
    {
      title: 'Meeting',
      rrule: {
        freq: 'weekly',
        byweekday: ['mo', 'fr']
      }
    }
  ]
})

calendar.render()

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
6.1.184,629latest
5.11.53,000legacy
7.0.0-rc.0180rc
7.0.0-beta.44beta

Version History

VersionDownloads (Last 7 Days)Published
6.1.184,629
6.1.177,482
7.0.0-rc.0180
7.0.0-beta.44
7.0.0-beta.32
7.0.0-beta.12
7.0.0-beta.02
6.1.156,792
6.1.14321
6.1.13369
6.1.121
6.1.11576
6.1.10201
6.1.9391
6.1.83,750
6.1.719
5.11.53,000
6.1.630
6.1.523
6.1.4210
6.1.31
6.1.12
6.1.01
5.11.489
6.0.312
6.0.23
6.0.10
6.0.03
6.0.0-beta.40
6.0.0-beta.30
6.0.0-beta.21
5.11.3828
6.0.0-beta.12
5.11.2211
5.11.0209
5.10.1549
5.10.05
5.9.065
5.8.09
5.7.23
5.7.043
5.6.072
5.5.10
5.5.015
5.4.02,756
5.3.1209
5.3.03
5.2.02
5.1.010
5.0.00
5.0.0-rc1
4.4.22,060
5.0.0-beta.41
5.0.0-beta.31
5.0.0-beta.20
5.0.0-beta.11
4.4.070
4.3.0142
4.2.075
4.1.00
4.0.23
4.0.13
4.0.0-beta.41
4.0.0-beta.31
4.0.0-beta.20

Package Sidebar

Install

npm i @fullcalendar/rrule

Weekly Downloads

35,446

Version

6.1.18

License

MIT

Unpacked Size

26.8 kB

Total Files

8

Last publish

Collaborators

  • arshaw