Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
calendar-link-id
Advanced tools
📅 Calendar link generator for popular services, like Google, Outlook, and Yahoo.
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 = {
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 | Array of emails (String) |
url | Calendar document URL | 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.
Not all calendars support the guests
and url
fields.MIT © Anand Chowdhary
FAQs
📅 Calendar link generator for popular services, like Google, Outlook, and Yahoo.
We found that calendar-link-id demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.