# @fullcalendar/timegrid

> Display events on time slots

Latest version **6.1.21** (published 2026-06-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install @fullcalendar/timegrid
pnpm add @fullcalendar/timegrid
yarn add @fullcalendar/timegrid
bun add @fullcalendar/timegrid
```

## Health

**Score 70/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; recently updated; high maintenance score; popular repo.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 6.1.21 |
| Published | 2026-06-18 |
| First published | 2019-02-06 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 231.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 20633 |
| Author | Adam Shaw |
| Maintainers | arshaw |
| Keywords | calendar, event, full-sized, fullcalendar, time, slots |

## Links

- npm: https://www.npmjs.com/package/@fullcalendar/timegrid
- Repository: https://github.com/fullcalendar/fullcalendar
- Homepage: https://fullcalendar.io/docs/timegrid-view
- Issues: https://fullcalendar.io/reporting-bugs
- npm.io page: https://npm.io/package/@fullcalendar/timegrid

## Dependencies (1)

- [@fullcalendar/daygrid](https://npm.io/package/@fullcalendar/daygrid.md) ~6.1.21

## Alternatives

- [@js-joda/timezone](https://npm.io/package/@js-joda/timezone.md) — 383.4K weekly downloads
- [chartjs-adapter-moment](https://npm.io/package/chartjs-adapter-moment.md) — 210.8K weekly downloads
- [strftime](https://npm.io/package/strftime.md) — 171.2K weekly downloads
- [vue-flatpickr-component](https://npm.io/package/vue-flatpickr-component.md) — 115.8K weekly downloads
- [timepicker](https://npm.io/package/timepicker.md) — 51.0K weekly downloads

## Recent versions

- 6.1.21 (latest) — 2026-06-18
- 7.0.0-beta.6 (beta) — 2025-12-31
- 7.0.0-rc.0 (rc) — 2025-02-21
- 5.11.5 (legacy) — 2023-05-08
- 6.1.20 — 2025-12-23
- 7.0.0-beta.5 — 2025-12-20
- 6.1.19 — 2025-08-10
- 6.1.18 — 2025-06-30
- 6.1.17 — 2025-04-02
- 7.0.0-beta.4 — 2025-01-09
- 7.0.0-beta.3 — 2024-12-19
- 7.0.0-beta.1 — 2024-10-10
- 7.0.0-beta.0 — 2024-10-01
- 6.1.15 — 2024-07-12
- 6.1.14 — 2024-06-05
- … 57 more at https://npm.io/package/@fullcalendar/timegrid/versions

## README

# FullCalendar Time Grid Plugin

Display events on time slots

## Installation

Install the necessary packages:

```sh
npm install @fullcalendar/core @fullcalendar/timegrid
```

## Usage

Instantiate a Calendar with the necessary plugin:

```js
import { Calendar } from '@fullcalendar/core'
import timeGridPlugin from '@fullcalendar/timegrid'

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

calendar.render()
```

---
_Source: https://npm.io/package/@fullcalendar/timegrid · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
