
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@fullcalendar/core
Advanced tools
FullCalendar core package for rendering a calendar
This package is never used alone. Use it with least one plugin (like daygrid):
npm install @fullcalendar/core @fullcalendar/daygrid
First, ensure there's a DOM element for your calendar to render into:
<body>
<div id='calendar'></div>
</body>
Then, instantiate a Calendar object with options and call its render method:
import { Calendar } from '@fullcalendar/core'
import dayGridPlugin from '@fullcalendar/daygrid'
const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
plugins: [
dayGridPlugin
// any other plugins
],
initialView: 'dayGridMonth',
weekends: false,
events: [
{ title: 'Meeting', start: new Date() }
]
})
calendar.render()
react-big-calendar is a similar package for React applications. It provides a calendar component with support for various views (month, week, day) and event management. Compared to @fullcalendar/core, it is more tightly integrated with React and offers a more React-centric API.
tui-calendar is a full-featured calendar library that supports various views, including month, week, and day. It offers a wide range of customization options and is known for its performance. Compared to @fullcalendar/core, tui-calendar is more lightweight and has a different set of customization options.
scheduler is a JavaScript library for creating scheduling applications. It supports drag-and-drop event management, various views, and resource management. Compared to @fullcalendar/core, scheduler is more focused on resource scheduling and management.
FAQs
FullCalendar core package for rendering a calendar
The npm package @fullcalendar/core receives a total of 1,351,037 weekly downloads. As such, @fullcalendar/core popularity was classified as popular.
We found that @fullcalendar/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.