๐ Calendar link generator for popular services
| | Status |
| - | - |
| Build |
|
| Health |
|
| Community |
|
JavaScript library to generate an event link for Google Calendar, Yahoo! Calendar, Microsoft Outlook, etc.
// Usage with Node.js
const { google, outlook, office365, yahoo, ics } = require("calendar-link");
// Usage with TypeScript or ES6
import { google, outlook, office365, yahoo, ics } from "calendar-link";
// Set event as an object
const event = {
uid: "your-unqiue-id",
title: "My birthday party",
description: "Be there!",
start: "2019-12-29 18:00:00 +0100",
duration: [3, "hour"],
};
// Then fetch the link
google(event); // https://calendar.google.com/calendar/render...
outlook(event); // https://outlook.live.com/owa/...
office365(event); // https://outlook.office.com/owa/...
yahoo(event); // https://calendar.yahoo.com/?v=60&title=...
ics(event); // standard ICS file based on https://icalendar.org
| Property | Description | Allowed values |
|---|---|---|
title (required) |
Event title | String |
start (required) |
Start time | JS Date / ISO 8601 string / Unix Timestamp |
end |
End time | JS Date / ISO 8601 string / Unix Timestamp |
duration |
Event duration | Array with value (Number) and unit (String) |
allDay |
All day event | Boolean |
rRule |
Recurring event | iCal recurrence rule string NOTE: Only supported by google and ics |
description |
Information about the event | String |
location |
Event location in words | String |
busy |
Mark on calendar as busy? | Boolean |
guests |
Emails of other guests. This is currently only supported for google, outlook, outlookMobile, office365, office365Mobile and msTeams |
Array of emails (String) |
url |
Calendar document URL | String |
uid |
Unique identifier for the event | String |
end, duration, or allDay is required.duration are listed here: https://day.js.org/docs/en/durations/creating#list-of-all-available-units.url field defaults to document.URL if a global document object exists. For server-side rendering, you should supply the url manually.guests and url fields. For guests support in outlook/office calendar, this has been tested with outlook and office365 when this PR was implemented but we werenโt able to test this with outlookMobile and office365Mobile so it might not work as expected. However, all outlook/office calendar links have same path and query string structure so we just added them as even if the query string is invalid, it will just be ignored and wonโt break anything.uid field is currently optional and will generate a random ID if not provided. In a future version, this field will be required to ensure proper event identification and deduplication.This package uses URLSearchParams (Node.js >= 10, 97%+ browsers), but if you need to include a polyfill, you can include url-search-params-polyfill first.
MIT ยฉ Anand Chowdhary