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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@vendasta/integrations

v5.1.1

Published

Components to facilitate integrations from third party services

Readme

Integrations

A library for integrating services from third-parties.

The intent behind this library is to include components and services that will reach out to an external service. An example being setting up a Zoom meeting, a Crankwheel screen share session, or syncing calendar events.

Modules Provided

Meeting Integrations

This module implements connections to third-party services. The backend work for establishing connections lives in the Meetings microservice: https://github.com/vendasta/meetings

Currently Google Meet and Zoom are supported in this module.

Technical Design

The module is based on a view model design. In the case of this module, you can think of the model as the series of store services for each third-party service. The view is anything a user would see, and the view-model is a single file that connects the view and the model together.

The view-model is also responsible for emitting events that the installing apps would be interested in.

For example: if the view has a button to add a contact, the definition of that contact may vary for each app. So if an add contact button was clicked then the view model would emit an event saying that it was clicked, and it would be the app's responsibility to do something about it. Once the contact has been added, the app can give the new contact to the view model, and it would update the contact list accordingly.

Meeting Integrations Block Diagram