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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@jaredwindover/cronofy

v2.1.3

Published

A simple wrapper for the Cronofy API

Readme

cronofy-node

A simple wrapper for the Cronofy API.

Basic Usage

The APIs should be one to one with the all of the current methods in Cronofy's documentation. The general pattern is that each method takes an options object and an optional callback. If a callback is not passed in as the second argument the function will act as a promise.

Usage Example

var Cronofy = require('cronofy');

var cronofyClient = new Cronofy({
  client_id: 'armzr1h5NPQST93XTFL9iIULXxfdDlmV',
  client_secret: 'aPPwd-ASDFAsdfasdfasdfsadfasdfASDFSADF_asdfasdfasdf',
  access_token: 'aLUj9bRInSj1n08pHPAo5ru0OOppDaCO',
  refresh_token: '5hdSBZHgjA4xcQAelyAYWDfezZv0-9yP'
});

var options = {
  code: 'asdkfj213sdf',
  redirect_uri: 'https://www.yoursite.com/calendar_redirect_page'
};

cronofyClient.requestAccessToken(options)
  .then(function(response){
    console.log(response);
  });

// Alternatively as a callback
cronofyClient.requestAccessToken(options, function(err, response){
  if(err) throw err;
  console.log(response);
})

Parameters Note

The cronofy client object can be initialized with client and token details. These details will be automatically added to each call that they are needed for, but these values can be replaced by any specified in the method's options object.

Functions available

accountInformation([callback])

Takes an optional callback, either returning a promise for, or calling the provided callback with an object containing the account information.

Response Example

{
  "account": {
    "account_id": "acc_567236000909002",
    "email": "[email protected]",
    "name": "Jane Doe",
    "default_tzid": "Europe/London"
  }
}

createEvent(options[, callback])

Takes options object and an optional callback, either returning a promise for, or calling the provided callback with an empty object in the success case.

Options Object

  • calendar_id - required - the id of the calendar that the event will be created one.
  • event_id - required - An id for the event you want to create.
  • summary - required - The name or title of the event.
  • description - required - The Description or notes for the event.
  • tzid - The Timezone id of the event.
  • start - required -The Start time of the event as an ISO string.
  • end - required - The end time of the event as an ISO string.
  • location - An object containing a single key of 'description', whos value is a string of the event location.

deleteEvent(options,[, callback])

Returns an empty string/promise for an empty string on success.

Options Object

  • calendar_id - required - the id of the calendar that the event will be deleted from.
  • event_id - required - An id for the event you want to delete.

freeBusy(options[, callback])

Takes options object and an optional callback, either returning a promise for, or calling the provided callback with a list of free/busy information across all calendars.

Options Object

  • from - required - the state date/time as an ISO string.
  • to - required - the end date/time as an ISO string.

listCalendars([callback])

Takes an optional callback, either returning a promise for, or calling the provided callback with a list of calendars for the user.

profileInformation([callback])

Takes an optional callback, either returning a promise for, or calling the provided callback with an array of the user's calendar profiles.

readEvents(options[, callback])

Takes options object and an optional callback, either returning a promise for, or calling the provided callback with an array of the user's events accross all calendars.

Options Object

  • from - required - the start date as an ISO string.
  • to - required - the end date as an ISO string.
  • tzid - the timezone id for the query.
  • next_page - url for the next page. This will still apply other options to the request.

refreshAccessToken(options[, callback])

Takes an optional callback, either returning a promise for, or calling the provided callback with the new refresh and access token information.

requestAccessToken(options[, callback])

Takes options object and an optional callback, either returning a promise for, or calling the provided callback with an object containing an access and refresh token for you to use with future requests.

Options Object

  • code - required - The short-lived, single-use code issued to you when the user authorized your access to their account as part of an Authorization Request.
  • redirect_uri - required - The same HTTP or HTTPS URI you passed when requesting the user's authorization.

revokeAuthorization([callback])

Takes an optional callback, either returning a promise for, or calling the provided callback with an empty object in the success case.

deleteExternalEvent(options[, callback])

Takes options object and an optional callback, either returning a promise for, or calling the provided callback with an empty object in the success case.

Options Object

  • calendar_id - required - the id of the calendar that the event will be deleted from.
  • event_uid - required - An id for the external event you want to delete.

elevatedPermissions(options[, callback])

Takes options object and an optional callback, either returning a promise for, or calling the provided callback with an object containing a permissions URL with a token

Options Object

  • permissions - required - An array of objects with a calendar_id and permission_level
  • redirect_uri - required - Url to redirect the user to in order to grant or reject requested access

authorizeWithServiceAccount(options[, callback])

Takes options object and an optional callback, either returning a promise for, or calling the provided callback with an empty object in the success case.

Options Object

  • email - required - The email of the user to be authorized
  • scope - required - The scopes to authorize for the user
  • callback_url - required - The URL to return to after the authorization

Push Notification Methods

createNotificationChannel(options,[, callback])

Takes options object and an optional callback, either returning a promise for, or calling the provided callback with an object with the new channel details.

Options Object

  • callback_url - required - The HTTP or HTTPS URL you wish to receive push notifications. Must not be longer than 128 characters and should be HTTPS.

deleteNotificationChannel(options[, callback])

Takes options object and an optional callback, either returning a promise for, or calling the provided callback with an empty object in the success case.

Options Object

  • channel_id - The id of the channel you wish to close.

listNotificationChannels([callback])

Takes an optional callback, either returning a promise for, or calling the provided callback with a list of notification channels.

addToCalendar(options[, callback])

Takes options object and an optional callback, either returning a promise for, or caling the provided callback with a URL to redirect the user towards

Options Object

  • client_id - required - The client ID.
  • client_secret - required - The client secret.
  • oauth - required - The OAuth information for the end-user to connect their calendar.
    • redirect_uri - required - The URL to send the end-user to after completing the Add To Calendar flow.
    • scope - required - The scope to request from the end-user during the oauth flow.
  • event - required - The event to create in the user's calendar.
    • event_id - required - The event's ID.
    • summary - required - The event's summary.
    • start - required - The event's start date.
    • end - required - The event's end date.
    • description - required - The event's description.
    • location - optional - The event's location.
    • url - optional - The event's URL.
    • reminders - optional - The event's reminders.
    • transparency - optional - The event's transparency.