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 🙏

© 2024 – Pkg Stats / Ryan Hefner

callibella

v0.9.20

Published

Calendar syncing monkey

Downloads

5

Readme

Callibella 🐒

It is considered unusual among Callibella in that it gives birth to only a single baby instead of twins, the norm for Callibella. Wikiepdia

Callibella was created under the assumption that it's normal for humas to have two calendars - one personal calendar that goes with them for years, and one work calendar. Your work calendar might be shared with others in the company, making it easy for others to book meetings with you by simply checking when you're free. However, this goes wrong when important personal events are missing from your work calendar.

Callibella reads your personal calendar and then connects to your work calendar and generates matching events. It doesn't reveal the content of your events - every event coming from your personal calendar will show up as "Busy" only, without description or location. Callibella will keep this event in sync with the original personal event, updating it's time or deleting it if nescasery.

Configuration

Callibella makes heavy use of tsdav to configure your source and destination calendars. Check tsdav's documentation for complete details. Below is an example of my ~/.config/callibella/config.json:

{
  "timeRange": {
    "daysInPast": 7,
    "daysInFuture": 180
  },
  "source": {
    "connection": {
      "serverUrl": "https://calendar.zoho.com/",

      "credentials": {
        "username": "[email protected]",
        "password": "correcthorsebatterystaple"
      },
      "authMethod": "Basic",
      "defaultAccountType": "caldav"
    },
    "calendar": "my-calendar-display-name"
  },
  "destination": {
    "connection": {
      "serverUrl": "https://oauth-hopper.example.com/caldav/v2/[email protected]/user/",

      "credentials": {
        "username": "me",
        "password": "Tr0ub4dor&3"
      },
      "authMethod": "Basic",
      "defaultAccountType": "caldav"
    },
    "calendar": "[email protected]"
  }
}
  • timeRange will define the range of dates in which Callibella would sync things.
  • source.connection is the same object you would pass to tsdav's DAVClient, and will include information about your source CalDAV server.
  • source.calendar is the unique name identifier of your calendar on this CalDAV server.
  • destination.* is exactly the same as source.*, and will include the details of your work calendar. In the above example I'm using OAuth Hopper to skip OAuth authenticaion with Google, but it's not a must as it seems like tsdav supports OAuth authenticaion too.

Usage

  1. Configure your calendars as explained above and save the file at ~/.config/callibella/config.json
  2. Run npx callibella to start syncing without installation, or install it using npm install -g callibella and then use callibella
  3. Everything works? Add a cron job for it and have your calendars forever synced!