MCPcopy Index your code
hub / github.com/fullcalendar/fullcalendar

github.com/fullcalendar/fullcalendar @v7.0.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v7.0.0 ↗ · + Follow
2,611 symbols 6,670 edges 802 files 0 documented · 0% 35 cross-repo links updated 20d agov7.0.0 · 2026-06-19★ 20,5441,065 open issues

Browse by type

Functions 2,046 Types & classes 565
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

FullCalendar

Full-sized drag & drop calendar in JavaScript

Connectors:

Bundle

The FullCalendar Standard Bundle is easier to install than individual plugins, though filesize will be larger. It works well with a CDN.

Installation

Install the FullCalendar vanilla-JS package:

npm install fullcalendar

Usage

Instantiate a Calendar with plugins and options:

import { Calendar } from 'fullcalendar'
import classicThemePlugin from 'fullcalendar/themes/classic'
import dayGridPlugin from 'fullcalendar/daygrid'
import interactionPlugin from 'fullcalendar/interaction'

import 'fullcalendar/skeleton.css'
import 'fullcalendar/themes/classic/theme.css'
import 'fullcalendar/themes/classic/palette.css'

const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
  plugins: [
    classicThemePlugin,
    dayGridPlugin,
    interactionPlugin
  ],
  initialView: 'timeGridWeek',
  editable: true,
  events: [
    { title: 'Meeting', start: new Date() }
  ]
})

calendar.render()

Development

You must install this repo with PNPM:

pnpm install

Available scripts (via pnpm run <script>):

  • build - build production-ready dist files
  • dev - build & watch development dist files
  • test - test headlessly
  • test:dev - test interactively
  • lint
  • clean

Info about contributing code »

Extension points exported contracts — how you extend this code

Core symbols most depended-on inside this repo

Shape

Function 1,217
Method 829
Interface 287
Class 278

Languages

TypeScript100%

Modules by API surface

packages/vanilla-tests/src/lib/wrappers/TimeGridWrapper.ts49 symbols
packages/vanilla-tests/src/lib/wrappers/DayGridWrapper.ts45 symbols
packages/preact/src/api/CalendarApiImpl.ts41 symbols
packages/preact/src/api/EventImpl.ts40 symbols
packages/angular/lib/src/full-calendar.component.spec.ts35 symbols
packages/preact/src/api/CalendarApi.ts32 symbols
packages/headless-calendar/src/env.ts31 symbols
packages/preact/src/common/scroll-controller.ts30 symbols
scripts/src/pkg/utils/rollup-plugins.ts29 symbols
packages/preact/src/DateProfileGenerator.ts26 symbols
scripts/src/pkg/utils/rollup-presets.ts24 symbols
packages/preact/src/reducers/CalendarDataManager.ts24 symbols

Dependencies from manifests, versioned

@angular-devkit/build-angular16.2.16 · 1×
@angular/animations16.2.0 · 1×
@angular/cli16.2.16 · 1×
@angular/common16.2.0 · 1×
@angular/compiler16.2.0 · 1×
@angular/compiler-cli16.2.0 · 1×
@angular/core16.2.0 · 1×
@angular/forms16.2.0 · 1×
@angular/platform-browser16.2.0 · 1×
@angular/platform-browser-dynamic16.2.0 · 1×
@angular/router16.2.0 · 1×
@full-ui/headless-calendarworkspace:7.0.0 · 1×

For agents

$ claude mcp add fullcalendar \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page