fullcalendar

Easily render a full-sized drag & drop calendar with a combination of standard plugins

fullcalendar downloads fullcalendar version fullcalendar license

fullcalendarPackages similaires:
Tendance de téléchargements npm
3 Ans
🌟 Affichez le graphique d'utilisation en temps réel sur le README.md de fullcalendar, il suffit de copier le code ci-dessous.
## Usage Trend
[![Usage Trend of fullcalendar](https://npm-compare.com/img/npm-trend/THREE_YEARS/fullcalendar.png)](https://npm-compare.com/fullcalendar#timeRange=THREE_YEARS)
Cumulative GitHub Star Trend
🌟 Affichez le graphique de tendance des GitHub Stars sur le README.md de fullcalendar, il suffit de copier le code ci-dessous.
## GitHub Stars Trend
[![GitHub Stars Trend of fullcalendar](https://npm-compare.com/img/github-trend/fullcalendar.png)](https://npm-compare.com/fullcalendar)
Détail des statistiques
Package
Téléchargements
Stars
Taille
Issues
Publication
Licence
fullcalendar186,87720,057990 kB1,076il y a 3 moisMIT
README pour fullcalendar

FullCalendar Standard Bundle

Easily render a full-sized drag & drop calendar with a combination of standard plugins

This fullcalendar package bundles these plugins:

Usage with CDN or ZIP archive

Load the index.global.min.js file and use the FullCalendar global namespace:

<!DOCTYPE html>
<html>
  <head>
    <script src='https://cdn.jsdelivr.net/npm/fullcalendar/index.global.min.js'></script>
    <script>

      document.addEventListener('DOMContentLoaded', function() {
        const calendarEl = document.getElementById('calendar')
        const calendar = new FullCalendar.Calendar(calendarEl, {
          initialView: 'dayGridMonth'
        })
        calendar.render()
      })

    </script>
  </head>
  <body>
    <div id='calendar'></div>
  </body>
</html>

Usage with NPM and ES modules

npm install fullcalendar
import { Calendar } from 'fullcalendar'

document.addEventListener('DOMContentLoaded', function() {
  const calendarEl = document.getElementById('calendar')
  const calendar = new Calendar(calendarEl, {
    initialView: 'dayGridMonth'
  })
  calendar.render()
})