Fullcalendar

Full-sized drag & drop event calendar in JavaScript
Alternatives To Fullcalendar
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Rdvcalendarview205
125 years ago7March 24, 20155mitObjective-C
Highly customizable calendarView and calendarViewController for iOS
Drag Calendar179
4 years ago2JavaScript
一个可拖拽日历组件
Calenstyle81
5 years ago9April 01, 201711mitJavaScript
Responsive Drag-&-Drop Event Calendar Library for Web, Mobile Sites, Android, iOS & Windows Phone
Vishnucalendar54
4 years agomitKotlin
Ddcalendarview53
16 years ago2March 27, 201714bsd-2-clauseObjective-C
a calendar view that looks like the ical view while supporting Drag & Drop (can show 1 day or a week - lots of IBDesignables)
Fullcalendar Jalaali36
4 years ago4mitJavaScript
Full-sized drag & drop event calendar (jQuery plugin) http://fullcalendar.io
Wagtail Calendar16
5 years ago5May 16, 20183bsd-3-clauseJavaScript
A planning calendar for wagtail
Androidusefulexamples10
6 years agoJava
Useful examples for Android development
Vsts Dropplan9
3 years ago10mitJavaScript
Plan and track your sprint with a calendar based view.
React Ui Guide8
10 months ago
Helpful libraries for building views in react
Alternatives To Fullcalendar
Select To Compare


Alternative Project Comparisons
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 core package and any plugins you plan to use:

npm install @fullcalendar/core @fullcalendar/interaction @fullcalendar/daygrid

Usage

Instantiate a Calendar with plugins and options:

import { Calendar } from '@fullcalendar/core'
import interactionPlugin from '@fullcalendar/interaction'
import dayGridPlugin from '@fullcalendar/daygrid'

const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
  plugins: [
    interactionPlugin,
    dayGridPlugin
  ],
  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 »

Popular Drag And Drop Projects
Popular Calendar Projects
Popular User Interface Components Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Typescript
Calendar