Gathering detailed insights and metrics for @fullcalendar/core
Gathering detailed insights and metrics for @fullcalendar/core
Gathering detailed insights and metrics for @fullcalendar/core
Gathering detailed insights and metrics for @fullcalendar/core
Full-sized drag & drop event calendar in JavaScript
npm install @fullcalendar/core
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
18,690 Stars
6,449 Commits
3,618 Forks
432 Watching
4 Branches
132 Contributors
Updated on 28 Nov 2024
TypeScript (84.06%)
HTML (12.61%)
CSS (2.04%)
JavaScript (0.97%)
PHP (0.3%)
Smarty (0.02%)
Cumulative downloads
Total Downloads
Last day
-3%
129,348
Compared to previous day
Last week
2.8%
704,637
Compared to previous week
Last month
4%
2,996,335
Compared to previous month
Last year
43.4%
31,303,386
Compared to previous year
1
Full-sized drag & drop calendar in JavaScript
Connectors:
The FullCalendar Standard Bundle is easier to install than individual plugins, though filesize will be larger. It works well with a CDN.
Install the FullCalendar core package and any plugins you plan to use:
1npm install @fullcalendar/core @fullcalendar/interaction @fullcalendar/daygrid
Instantiate a Calendar with plugins and options:
1import { Calendar } from '@fullcalendar/core' 2import interactionPlugin from '@fullcalendar/interaction' 3import dayGridPlugin from '@fullcalendar/daygrid' 4 5const calendarEl = document.getElementById('calendar') 6const calendar = new Calendar(calendarEl, { 7 plugins: [ 8 interactionPlugin, 9 dayGridPlugin 10 ], 11 initialView: 'timeGridWeek', 12 editable: true, 13 events: [ 14 { title: 'Meeting', start: new Date() } 15 ] 16}) 17 18calendar.render()
You must install this repo with PNPM:
pnpm install
Available scripts (via pnpm run <script>
):
build
- build production-ready dist filesdev
- build & watch development dist filestest
- test headlesslytest:dev
- test interactivelylint
clean
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 7 issue activity found in the last 90 days -- score normalized to 5
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
no SAST tool detected
Details
Reason
security policy file not detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
Project has not signed or included provenance with any releases.
Details
Reason
19 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More