# @fullcalendar/resource

> Base support for resources, required by resource views

Latest version **6.1.21** (published 2026-06-18) · SEE LICENSE IN LICENSE.md license · 0 weekly downloads

## Install

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

## Health

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

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

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 6.1.21 |
| Published | 2026-06-18 |
| First published | 2022-11-22 |
| Weekly downloads | 0 |
| License | SEE LICENSE IN LICENSE.md |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 227.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 797 |
| Author | Adam Shaw |
| Maintainers | arshaw |
| Keywords | calendar, event, full-sized, fullcalendar, scheduler, resource, scheduler, resource |

## Links

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

## Dependencies (1)

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

## Alternatives

- [async-exit-hook](https://npm.io/package/async-exit-hook.md) — 3.7M weekly downloads
- [evnty](https://npm.io/package/evnty.md) — 7.2K weekly downloads
- [eleventy-plugin-asciidoc](https://npm.io/package/eleventy-plugin-asciidoc.md) — 3.5K weekly downloads
- [@jswork/next-get2get](https://npm.io/package/@jswork/next-get2get.md) — 945 weekly downloads
- [@dashersw/axon](https://npm.io/package/@dashersw/axon.md) — 934 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
- 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
- 6.1.13 — 2024-05-22
- … 19 more at https://npm.io/package/@fullcalendar/resource/versions

## README

# FullCalendar Resource Plugin

Base support for resources, required by resource views

## Installation

It is necessary to install this package as a [peer dependency](https://nodejs.org/es/blog/npm/peer-dependencies/) of any other package that utilizes resources (such as [resource-timeline view](https://fullcalendar.io/docs/timeline-view)):

```sh
npm install @fullcalendar/core @fullcalendar/resource @fullcalendar/resource-timeline
```

## Usage

This package is especially useful for obtaining the `ResourceInput` TypeScript type:

```ts
import { Calendar } from '@fullcalendar/core'
import { ResourceInput } from '@fullcalendar/resource'
import resourceTimelinePlugin from '@fullcalendar/resource-timeline'

const resources: ResourceInput[] = [
  { title: 'Resource A' },
  { title: 'Resource B' }
]

const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
  plugins: [ resourceTimelinePlugin ],
  initialView: 'resourceTimeline',
  resources: resources
})

calendar.render()
```

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