fullcalendar

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

fullcalendar downloads fullcalendar version fullcalendar license

fullcalendarPaquetes similares:
Tendencia de descargas de npm
3 A帽os
馃専 Muestra el gr谩fico de uso en tiempo real en el README.md de fullcalendar, simplemente copia el c贸digo a continuaci贸n.
## 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
馃専 Muestra el gr谩fico de tendencia de GitHub Stars en el README.md de fullcalendar, simplemente copia el c贸digo a continuaci贸n.
## GitHub Stars Trend
[![GitHub Stars Trend of fullcalendar](https://npm-compare.com/img/github-trend/fullcalendar.png)](https://npm-compare.com/fullcalendar)
Detalle de estad铆sticas
Paquete
Descargas
Stars
Tama帽o
Issues
Publicaci贸n
Licencia
fullcalendar186,87720,057990 kB1,076hace 3 mesesMIT
README para 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()
})