Socket
Socket
Sign inDemoInstall

fullcalendar-scheduler

Package Overview
Dependencies
15
Maintainers
1
Versions
85
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fullcalendar-scheduler

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


Version published
Weekly downloads
14K
decreased by-16.8%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

FullCalendar Premium Bundle

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

This fullcalendar-scheduler 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-scheduler/index.global.min.js'></script>
    <script>

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

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

Usage with NPM and ES modules

npm install fullcalendar-scheduler
import { Calendar } from 'fullcalendar-scheduler'

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

Keywords

FAQs

Last updated on 20 Feb 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc