Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@fullcalendar/bootstrap
Advanced tools
Bootstrap 4 theme for FullCalendar
For Bootstrap 5, use the @fullcalendar/bootstrap5 package
First, ensure the necessary Bootstrap packages are installed:
npm install bootstrap@4 @fortawesome/fontawesome-free
Then, install the FullCalendar core package, the Bootstrap plugin, and any other plugins (like daygrid):
npm install @fullcalendar/core @fullcalendar/bootstrap @fullcalendar/daygrid
Instantiate a Calendar with the necessary plugins and options:
import { Calendar } from '@fullcalendar/core'
import bootstrapPlugin from '@fullcalendar/bootstrap'
import dayGridPlugin from '@fullcalendar/daygrid'
// import third-party stylesheets directly from your JS
import 'bootstrap/dist/css/bootstrap.css'
import '@fortawesome/fontawesome-free/css/all.css' // needs additional webpack config!
const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
plugins: [
bootstrapPlugin,
dayGridPlugin
],
themeSystem: 'bootstrap', // important!
initialView: 'dayGridMonth'
})
calendar.render()
6.1.9 (2023-09-21)
white-space:normal
can causes infinite loop (#7447)eventClick
does not fire for allDay events with async provided resources (#7365)eventContent
with Preact nodes (via createElement
) not rendering (#7342)eventDidMount
does not exists in the DOM (#7191)document
is not defined error (#7352)FAQs
Bootstrap 4 theme for FullCalendar
The npm package @fullcalendar/bootstrap receives a total of 31,041 weekly downloads. As such, @fullcalendar/bootstrap popularity was classified as popular.
We found that @fullcalendar/bootstrap 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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.