timeslottr
v1.2.1
Published
A zero-dependency TypeScript library for generating time slots with timezone support, buffers, exclusions, and overlap detection.
Downloads
207
Maintainers
Readme
timeslottr
Generate time slots, and find when everyone's free. Timezone and DST correct. Zero dependencies. TypeScript-first.
Docs · API Reference · Playground
Overview
timeslottr is a zero-dependency TypeScript library for interval arithmetic over calendar time. It turns working hours into bookable slots, subtracts already-booked events, and intersects multiple participants' calendars to find the windows where everyone is free.
It's the engine layer that scheduling products like Calendly and cal.com are built on — the interval math, without the calendar sync, storage, or UI.
- Slot generation. Produce fixed-duration slots from a daily range or a per-weekday
Map, with a configurable step interval (slotIntervalMinutesfor overlapping or spaced starts), leading/trailing buffers, excluded windows, edge alignment (start/end/center), and amaxSlotscap. - Availability math.
subtract(availability − busy) andintersect(overlap across N participants) run as sort-then-sweep passes —O((n + m) log m)andO(total · log)— instead of the nested loops these features are usually hand-rolled with. - Timezone & DST correct. Built on the platform
Intl.DateTimeFormatAPI, so a day that springs forward or falls back yields the right number of real slots. Nodayjs, nodate-fns, no IANA database in your bundle. - Half-open intervals. Every interval is
[start, end). A slot ending at 10:00 does not collide with one starting at 10:00, which eliminates the off-by-one errors that silently corrupt bookings.
It ships dual ESM/CJS, is fully typed, runs in Node, edge runtimes, and browsers, and has 90%+ test coverage.
timeslottr is an engine, not a booking product. It hands you
Date-based interval results; calendar sync and storage stay yours.
Installation
npm install timeslottrQuick start
import { generateTimeslots } from 'timeslottr';
const slots = generateTimeslots({
day: '2024-01-01',
timezone: 'America/New_York',
range: { start: '09:00', end: '17:30' },
slotDurationMinutes: 45,
slotIntervalMinutes: 30,
bufferBeforeMinutes: 15,
excludedWindows: [
{ start: '12:00', end: '13:00' } // lunch break
],
minimumSlotDurationMinutes: 20,
alignment: 'start',
labelFormatter: ({ start }) => start.toLocaleTimeString('en-US', { hour: 'numeric', minute: '2-digit' })
});
console.log(slots.map((slot) => ({
start: slot.start.toISOString(),
end: slot.end.toISOString(),
label: slot.metadata?.label
})));Multi-day scheduling
To generate slots across a range of dates (e.g., "9am to 5pm" for every day from Jan 1st to Jan 7th), use generateDailyTimeslots. This helper applies your configuration to each day within the specified period.
import { generateDailyTimeslots } from 'timeslottr';
const slots = generateDailyTimeslots(
// The outer window (e.g. a full week)
{ start: '2024-01-01', end: '2024-01-08' },
{
// The daily schedule (applied to each day in the window)
range: { start: '09:00', end: '17:00' },
slotDurationMinutes: 60,
timezone: 'America/New_York',
// ... other config options (buffers, exclusions, etc.)
}
);Per-weekday schedules
You can define different time ranges for each day of the week by passing a Map<Weekday, TimeslotRangeInput> as the range. Days not included in the map are skipped. Set a weekday to null to explicitly exclude it.
import { generateDailyTimeslots, Weekday } from 'timeslottr';
import type { WeekdayTimeslotRangeInput } from 'timeslottr';
const weekdayRanges: WeekdayTimeslotRangeInput = new Map([
[Weekday.MON, { start: '09:00', end: '17:00' }],
[Weekday.TUE, { start: '09:00', end: '17:00' }],
[Weekday.WED, { start: '09:00', end: '12:00' }], // half day
[Weekday.THU, { start: '09:00', end: '17:00' }],
[Weekday.FRI, { start: '10:00', end: '16:00' }], // late start, early finish
// SAT and SUN omitted, so no slots are generated on weekends
]);
const slots = generateDailyTimeslots(
{ start: '2024-01-01', end: '2024-01-14' },
{
range: weekdayRanges,
slotDurationMinutes: 60,
timezone: 'America/New_York',
}
);Configuration
| Option | Type | Description |
| --- | --- | --- |
| range | { start, end } or Map<Weekday, { start, end } \| null> | Required boundaries for the generation window. Each boundary accepts a Date, an ISO-like string, a time-only string ("09:00"), or { date, time }. Time-only inputs need a day default or an inline date. For generateDailyTimeslots, you can pass a Map keyed by Weekday to define per-weekday schedules; omitted days produce no slots. |
| day | string \| Date | Default calendar day when range/excludedWindows use time-only strings. |
| slotDurationMinutes | number | Length of each primary slot. Must be positive. |
| slotIntervalMinutes | number | Step between slot starts. Defaults to slotDurationMinutes, enabling overlaps or gaps when customised. |
| bufferBeforeMinutes / bufferAfterMinutes | number | Trim the usable window by applying leading/trailing buffers. |
| excludedWindows | TimeslotRangeInput[] | Sub-ranges to omit (breaks, blackout periods). Overlapping windows are merged. |
| timezone | string | IANA time zone used when interpreting date-only or time-only inputs (America/New_York, UTC, …). |
| alignment | 'start' \| 'end' \| 'center' | Controls how leftover time is handled. start truncates at the end, end aligns slots backwards from the range end, center distributes leftover time evenly. |
| minimumSlotDurationMinutes | number | Minimum allowable length for partial edge slots. Defaults to slotDurationMinutes. |
| includeEdge | boolean | Include truncated edge slots when their duration is above the minimum. Defaults to true. |
| maxSlots | number | Hard limit on the number of generated slots. |
| minimumNoticeMinutes | number | Lead time before a slot can be booked. Slots starting sooner than now + minimumNoticeMinutes are dropped. |
| maximumAdvanceDays | number | How far ahead bookings are allowed, in whole calendar days. Slots starting at or after that point are dropped. |
| now | string \| Date | Reference "current time" for the two options above. Defaults to new Date(). |
| labelFormatter | ({ start, end }, index, durationMinutes) => string | Optional metadata helper for injecting labels or display text. |
Write date-only values as YYYY-MM-DD. That form is resolved in timezone;
looser ones like 2025-3-5 or 2025/03/05 are rejected, because the engine
would resolve them against the machine's local zone instead and land a day off.
Strings carrying an explicit time are still parsed as-is. Days beyond the length
of their month (2025-02-30) are rejected rather than rolling into the next one.
Each generated Timeslot contains immutable Date instances and optional metadata:
{
start: Date;
end: Date;
metadata?: {
index: number;
durationMinutes: number;
label?: string;
};
}Utilities
Creating and validating slots
import { createTimeslot } from 'timeslottr';
const slot = createTimeslot(
new Date('2024-01-01T09:00:00Z'),
new Date('2024-01-01T10:00:00Z')
);
// Throws TypeError for invalid dates, RangeError if end <= startChecking for overlaps
import { overlaps } from 'timeslottr';
overlaps(slotA, slotB); // true if the two slots intersectChecking if a time falls within a slot
import { contains } from 'timeslottr';
contains(slot, new Date('2024-01-01T09:30:00Z')); // true
contains(slot, new Date('2024-01-01T10:00:00Z')); // false (end is exclusive)Merging overlapping slots
import { mergeSlots } from 'timeslottr';
const merged = mergeSlots([slotA, slotB, slotC]);
// Sorts by start time, merges any overlapping or adjacent slotsFinding gaps (free time)
import { findGaps } from 'timeslottr';
const free = findGaps(bookedSlots, {
start: new Date('2024-01-01T09:00:00Z'),
end: new Date('2024-01-01T17:00:00Z')
});
// Returns unbooked time slots within the rangeJSON serialization
Date objects don't survive JSON.stringify → JSON.parse round-trips. Use the built-in helpers:
import { timeslotToJSON, timeslotFromJSON } from 'timeslottr';
const json = timeslotToJSON(slot);
// { start: "2024-01-01T09:00:00.000Z", end: "2024-01-01T10:00:00.000Z", metadata: { ... } }
const restored = timeslotFromJSON(json);
// Timeslot with proper Date instances. Validates the dates and that start < endMulti-day scheduling
generateDailyTimeslots applies your configuration to each day within a date range. The range can be a single TimeslotRangeInput (same schedule every day) or a Map<Weekday, TimeslotRangeInput | null> for per-weekday schedules:
import { generateDailyTimeslots, Weekday } from 'timeslottr';
// Same schedule every day
const slots = generateDailyTimeslots(
{ start: '2024-01-01', end: '2024-01-08' },
{
range: { start: '09:00', end: '17:00' },
slotDurationMinutes: 60,
timezone: 'America/New_York',
maxDays: 365, // optional safety limit (default: 10,000)
}
);
// Different schedule per weekday
const weekdaySlots = generateDailyTimeslots(
{ start: '2024-01-01', end: '2024-01-08' },
{
range: new Map([
[Weekday.MON, { start: '09:00', end: '17:00' }],
[Weekday.WED, { start: '09:00', end: '12:00' }],
[Weekday.FRI, { start: '10:00', end: '16:00' }],
]),
slotDurationMinutes: 60,
timezone: 'America/New_York',
}
);The Weekday enum values are: SUN (0), MON (1), TUE (2), WED (3), THU (4), FRI (5), SAT (6).
Multi-party availability
Take a base schedule, remove what is already booked, and keep only the windows
where everyone is free. This is the part scheduling tools like Calendly and
cal.com depend on. Everything uses half-open [start, end) intervals, so a slot
that ends when a meeting starts is not treated as a conflict.
generateAvailableTimeslots takes the same config as generateTimeslots, plus
two optional fields:
busy: booked events to remove from availability, blocked for everyone.participantsBusy: per-person busy sets. The result is narrowed to windows where everyone is free.
Busy times accept the same formats as range and excludedWindows (string | Date | { date, time }).
import { generateAvailableTimeslots } from 'timeslottr';
const slots = generateAvailableTimeslots({
day: '2024-01-01',
timezone: 'America/New_York',
range: { start: '09:00', end: '17:00' },
slotDurationMinutes: 30,
// already-booked events on the host's calendar
busy: [
{ start: '12:00', end: '13:00' }, // lunch
{ start: new Date('2024-01-01T15:00:00-05:00'), end: new Date('2024-01-01T15:30:00-05:00') }
],
// each invitee's busy times; only times where all are free survive
participantsBusy: [
[{ start: '09:00', end: '10:00' }], // Alice
[{ start: { date: '2024-01-01', time: '16:00' }, end: { date: '2024-01-01', time: '17:00' } }] // Bob
]
});
// 30-minute slots between 10:00 and 16:00, with lunch and the 15:00 booking removedIt composes two interval functions you can also use directly. Both work on resolved Interval objects ({ start: Date; end: Date }):
import { subtract, intersect } from 'timeslottr';
// availability minus bookings, leaving the free time. A busy window in the middle
// splits the source in two; busy can be unsorted, overlapping, or boundary-touching.
const free = subtract(
[{ start: new Date('2024-01-01T09:00:00Z'), end: new Date('2024-01-01T17:00:00Z') }],
[{ start: new Date('2024-01-01T12:00:00Z'), end: new Date('2024-01-01T13:00:00Z') }]
);
// result: [09:00 to 12:00, 13:00 to 17:00]
// a time that works for the whole team: windows where every set overlaps.
// no sets returns []; one set returns a merged copy; any empty set returns [].
const team = intersect([
[{ start: new Date('2024-01-01T09:00:00Z'), end: new Date('2024-01-01T15:00:00Z') }],
[{ start: new Date('2024-01-01T11:00:00Z'), end: new Date('2024-01-01T17:00:00Z') }]
]);
// result: [11:00 to 15:00]subtract runs in O((n + m) log m) and intersect in O(total intervals · log), both with a sort and a sweep rather than a nested scan. Slotting (duration, interval, alignment, buffers, labels, maxSlots, and timezone/DST handling) is identical to generateTimeslots.
Booking windows
A slot can be on the calendar without being bookable: nobody wants a meeting request for ten minutes from now, or one that lands eight months out. Two options gate the generated slots against the clock, and they work with all three generators.
import { generateTimeslots } from 'timeslottr';
const slots = generateTimeslots({
day: '2024-01-01',
range: { start: '09:00', end: '17:00' },
slotDurationMinutes: 30,
minimumNoticeMinutes: 120, // no bookings within the next 2 hours
maximumAdvanceDays: 60 // and nothing more than 60 days out
});minimumNoticeMinutes— drops slots starting beforenow + minimumNoticeMinutes.maximumAdvanceDays— drops slots starting at or after the same wall-clock time that many calendar days fromnow, in your configuredtimezone. Going through the calendar rather than adding 24-hour blocks keeps "60 days out" at the same local time across a daylight-saving change. Must be a positive whole number.now— the reference time, defaulting tonew Date(). Pass it explicitly to make output deterministic in tests, or to gate against a server clock rather than the caller's.
Filtering is on each slot's start, so a slot already in progress is never bookable no matter when it ends. The bookable span is half-open — a slot starting exactly at the notice boundary is kept, one starting exactly at the advance cutoff is not — matching the interval semantics used everywhere else in the library.
Unbookable slots are removed before maxSlots is applied, so maxSlots: 5
yields five bookable slots rather than five candidates that may thin out to
two. Surviving slots are renumbered contiguously from 0.
If neither option is set, now is never read and generation stays a pure
function of the range.
Development
# Install dependencies
npm install
# Run tests
npm test
# Generate production build
npm run buildThe build pipeline uses tsup to emit dual ESM/CJS bundles in dist/ with type definitions. Tests are written with Vitest.
