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

another-meet

v1.1.0

Published

Manage Google Meet meetings from your terminal

Readme

another-meet

Manage Google Meet meetings from your terminal. 🚀

another-meet is a command-line tool for creating, joining, scheduling, and inviting people to Google Meet meetings — without ever leaving your terminal. V1 focuses entirely on Google Meet integration via the Google Calendar API.

Installation (Node.js)

You can install another-meet globally using your preferred Node.js package manager:

# npm
npm install -g another-meet

# yarn
yarn global add another-meet

# pnpm
pnpm add -g another-meet

# bun
bun install -g another-meet

(Note: This package automatically downloads the pre-compiled standalone Go binary for your operating system during installation).

Quick Start

# 1. Authenticate with Google
another-meet auth login

# 2. Create an instant meeting with a Google Meet link
another-meet create

# 3. List today's meetings
another-meet list

# 4. Join the next upcoming meeting
another-meet join

Commands

auth — Manage authentication

# Login via browser (OAuth2 + PKCE)
another-meet auth login

# Check who you're authenticated as
another-meet auth status

# Remove stored credentials
another-meet auth logout

create — Create an instant meeting

# Create a quick 30-min meeting with a Meet link
another-meet create

# Custom title and duration
another-meet create --title "Sprint Planning" --duration 1h

# With attendees and auto-open in browser
another-meet create -t "Design Review" -d 45m -a "[email protected],[email protected]" --open

| Flag | Short | Default | Description | |------|-------|---------|-------------| | --title | -t | Quick Meeting | Meeting title | | --duration | -d | 30m | Duration (30m, 1h, 1h30m) | | --attendees | -a | — | Comma-separated emails | | --description | | — | Meeting description | | --open | -o | false | Open Meet link in browser | | --calendar | | primary | Calendar ID | | --no-meet | | false | Skip Meet link creation |

list — List upcoming meetings

# Today's meetings
another-meet list

# Specific date range
another-meet list --from "2026-06-10" --to "2026-06-12"

# Only meetings with Meet links
another-meet list --has-meet

# JSON output for scripting
another-meet list --json | jq '.[].meet_link'

| Flag | Default | Description | |------|---------|-------------| | --from | today | Start date (e.g. "today", "2026-06-10") | | --to | today | End date | | --has-meet | false | Only list events that have a Google Meet link | | --calendar | primary | Calendar ID to fetch events from |

schedule — Schedule a future meeting

# Schedule for a specific date and time
another-meet schedule --title "Design Review" --at "2026-06-10 14:00" --duration 45m

# Schedule for tomorrow with attendees
another-meet schedule -t "Weekly Sync" --at "tomorrow 10:00" -d 30m -a "[email protected]"

| Flag | Short | Default | Description | |------|-------|---------|-------------| | --title | -t | Quick Meeting | Meeting title | | --at | | — | When the meeting starts (e.g. "tomorrow 10:00", "2026-06-10 14:00") | | --duration | -d | 30m | Duration (30m, 1h, 1h30m) | | --attendees | -a | — | Comma-separated emails | | --description | | — | Meeting description | | --calendar | | primary | Calendar ID |

join — Join a meeting

# Join the next upcoming meeting
another-meet join

# Join a specific meeting by event ID
another-meet join --id <event-id>

| Flag | Description | |------|-------------| | --id | Specific event ID to join (if not provided, joins the next upcoming meeting) |

invite — Add attendees to a meeting

# Invite to a specific meeting
another-meet invite --id <event-id> -a "[email protected]"

# Invite to the next upcoming meeting
another-meet invite --next -a "[email protected],[email protected]"

| Flag | Short | Description | |------|-------|-------------| | --id | | Specific event ID to invite to | | --next | | Invite to the next upcoming meeting | | --attendees | -a | Comma-separated emails to invite |

For Full Documentation

For the complete list of command-line flags, configuration details, and contribution guidelines, please visit the official GitHub repository.