In this setup, we serve up fullcalendar from our
node_modules/
using an Express server.
In production, a better procedure would probably be to:
- Download the
fullcalendar
code (usingnpm
, or directly from their website) - Serve up the minified versions of relevant files using
app.use
andexpress.static
. - Import the relevant minified files into your templates as needed.