npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

jscal-calendar

v1.2.0

Published

A lightweight JavaScript calendar library with ICS/JSON support, CRUD operations, recurring events (RRULE), categories, priorities, holidays, and conflict detection

Readme

JSCal - JavaScript Calendar

A lightweight, zero-dependency JavaScript calendar library that can read events from ICS streams or JSON files.

Features

  • Event Parsing: ICS/iCalendar (RFC 5545) and JSON formats
  • CRUD Operations: Add, update, delete, and find events
  • Recurring Events: Full RRULE support (DAILY, WEEKLY, MONTHLY, YEARLY)
  • Mini Calendar Navigator: Compact month view with event indicators
  • Detailed Calendar View: Full calendar with event titles and descriptions
  • Categories & Priorities: Organize and filter events
  • Conflict Detection: Identify overlapping events
  • Holiday Support: Built-in holidays for US, UK, FR, CA
  • Theming: 5 pre-built themes + custom theme support
  • Templating: Customizable HTML rendering for calendar components
  • Month/Week Views: Flexible calendar grid generation
  • Event Search: Search and filter by multiple criteria
  • Zero Dependencies: Lightweight and fast
  • Works Everywhere: Node.js and browsers (CommonJS, ES Modules, UMD)
  • Well Tested: 208 passing tests with 80% coverage
  • TypeScript Support: Type definitions (coming in v1.3.0)

Installation

npm install jscal-calendar

Quick Start

Node.js

const JSCal = require('jscal-calendar');

const calendar = new JSCal();

// Load from ICS file
const fs = require('fs');
const icsContent = fs.readFileSync('events.ics', 'utf-8');
calendar.loadICS(icsContent);

// Load from JSON
const jsonEvents = [
  {
    title: "Team Meeting",
    start: "2025-11-05T10:00:00",
    end: "2025-11-05T11:00:00",
    description: "Weekly sync"
  }
];
calendar.loadJSON(jsonEvents);

// Get events for a specific date
const events = calendar.getEventsForDate(new Date('2025-11-05'));
console.log(events);

Browser (UMD)

<script src="node_modules/jscal-calendar/dist/index.umd.js"></script>
<script>
  const calendar = new JSCal();

  // Load from URL
  calendar.loadICSFromURL('https://example.com/calendar.ics')
    .then(events => {
      console.log('Loaded events:', events);
    });
</script>

ES Modules

import JSCal from 'jscal-calendar';

const calendar = new JSCal();
calendar.loadJSON(myEvents);

API Reference

Main Class: JSCal

Constructor

const calendar = new JSCal();

Methods

loadICS(icsContent: string): Array

Load events from ICS string content.

const events = calendar.loadICS(icsString);
loadICSFromURL(url: string): Promise<Array>

Load events from ICS URL (works in both Node.js and browser).

await calendar.loadICSFromURL('https://example.com/calendar.ics');
loadJSON(jsonData: string | Object): Array

Load events from JSON string or object.

calendar.loadJSON([
  { title: "Event", start: "2025-11-05T10:00:00" }
]);
addEvents(events: Array | Object): void

Add custom events to the calendar.

calendar.addEvents({
  title: "Custom Event",
  start: new Date(),
  end: new Date()
});
clearEvents(): void

Remove all events from the calendar.

calendar.clearEvents();
getEventsForDate(date: Date): Array

Get all events for a specific date.

const events = calendar.getEventsForDate(new Date('2025-11-05'));
getEventsInRange(startDate: Date, endDate: Date): Array

Get events within a date range.

const events = calendar.getEventsInRange(
  new Date('2025-11-01'),
  new Date('2025-11-30')
);
getEventsForMonth(year: number, month: number): Array

Get all events for a specific month (month is 0-indexed).

const events = calendar.getEventsForMonth(2025, 10); // November 2025
getMonthGrid(year: number, month: number): Object

Get calendar grid data for rendering a month view.

const grid = calendar.getMonthGrid(2025, 10);
// Returns: { year, month, grid: [...], totalEvents }
getAllEvents(): Array

Get all events sorted by start date.

const allEvents = calendar.getAllEvents();
searchEvents(query: string): Array

Search events by title, description, or location.

const results = calendar.searchEvents('meeting');

Standalone Parsers

You can also use the parsers independently:

const { ICSParser, JSONParser } = require('jscal-calendar');

// Parse ICS
const icsEvents = ICSParser.parse(icsString);

// Parse JSON
const jsonEvents = JSONParser.parse(jsonString);

Event Object Format

All events are normalized to this format:

{
  title: string,        // Event title
  start: Date,          // Start date/time
  end: Date | null,     // End date/time (optional)
  description: string,  // Event description
  location: string,     // Event location
  uid: string          // Unique identifier
}

JSON Input Format

JSCal accepts flexible JSON formats:

[
  {
    "title": "Event Title",
    "start": "2025-11-15T10:00:00",
    "end": "2025-11-15T11:00:00",
    "description": "Event description",
    "location": "Office"
  }
]

Alternative field names are also supported:

  • title, summary, or name for the event title
  • start, startDate, or startTime for the start date
  • end, endDate, or endTime for the end date
  • description or desc for the description
  • location or place for the location

ICS Support

Supports standard ICS/iCalendar format (RFC 5545):

  • VEVENT components
  • DTSTART and DTEND (both date and datetime formats)
  • SUMMARY, DESCRIPTION, LOCATION
  • Line folding
  • Text escaping (\n, \,, \;, \\)
  • UTC and local time formats

Development

Running Tests

npm test

Building

npm run build

Running the Demo

npm start

Then open http://localhost:8080 in your browser.

Theming & Customization

JSCal includes a powerful theming system with 5 pre-built themes and support for custom themes.

Using Pre-built Themes

const { JSCal, Themes } = require('jscal-calendar');

const calendar = new JSCal({ theme: Themes.dark });
calendar.applyTheme(document.getElementById('calendar-container'));

Available themes:

  • Themes.default - Modern purple gradient theme
  • Themes.dark - Dark mode theme
  • Themes.minimal - Clean minimal theme
  • Themes.colorful - Bright, vibrant theme
  • Themes.corporate - Professional blue theme

Creating Custom Themes

const { Theme } = require('jscal-calendar');

const customTheme = new Theme({
    name: 'my-theme',
    colors: {
        primary: '#667eea',
        background: '#ffffff',
        text: '#333333'
    },
    fonts: {
        family: 'Inter, sans-serif',
        sizeBase: '14px'
    },
    spacing: {
        md: '16px',
        lg: '24px'
    }
});

calendar.setTheme(customTheme);

Custom Templates

Customize how calendar components are rendered:

calendar.setTemplate('eventItem', ({ event }) => `
    <div class="my-event">
        <h4>${event.title}</h4>
        <p>${new Date(event.start).toLocaleString()}</p>
    </div>
`);

For complete theming documentation, see THEMING.md.

Examples

See the demo files for a complete example:

  • index.html - Interactive calendar UI with theme switcher
  • calendar.js - Calendar rendering with DOM
  • sample-events.json - Sample JSON events
  • sample-events.ics - Sample ICS events

Browser Compatibility

  • Modern browsers (ES6+)
  • Node.js 14+

Documentation

License

MIT License - see LICENSE file for details

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Screenshots

The demo includes:

  • Mini Calendar Navigator: Compact dark-themed month selector with event indicators
  • Detailed Calendar: Full calendar view with event titles and descriptions
  • Event Details: Click any event to see full details in a popup
  • Theme Switcher: Toggle between 5 pre-built themes
  • File Import: Load events from ICS or JSON files

Links

  • GitHub: https://github.com/GhDj/jscal
  • Issues: https://github.com/GhDj/jscal/issues
  • npm: https://www.npmjs.com/package/jscal-calendar