Find Similar Packages for @fullcalendar/list
@fullcalendar/listSimilar Packages:
Npm Package Weekly Downloads Trend
3 Years
🌟 Show real-time usage chart on @fullcalendar/list's README.md, just copy the code below.
## Usage Trend
[![Usage Trend of @fullcalendar/list](https://npm-compare.com/img/npm-trend/THREE_YEARS/@fullcalendar/list.png)](https://npm-compare.com/@fullcalendar/list#timeRange=THREE_YEARS)
Cumulative GitHub Star Trend
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
@fullcalendar/list454,964
19,98968.3 kB1,0692 months agoMIT
README for @fullcalendar/list

FullCalendar List View Plugin

Display events on a calendar view that looks like a bulleted list

Installation

Install the necessary packages:

npm install @fullcalendar/core @fullcalendar/list

Usage

Instantiate a Calendar with the necessary plugin:

import { Calendar } from '@fullcalendar/core'
import listPlugin from '@fullcalendar/list'

const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
  plugins: [listPlugin],
  initialView: 'listWeek',
  events: [
    { title: 'Meeting', start: new Date() }
  ]
})

calendar.render()