{"id":13621460,"url":"https://github.com/ryanprior/meet","last_synced_at":"2025-05-14T14:34:17.228Z","repository":{"id":77898565,"uuid":"265939274","full_name":"ryanprior/meet","owner":"ryanprior","description":"Start a meeting quickly from the comfort of your command line. 👩‍👩‍👧‍👦️💨️","archived":false,"fork":false,"pushed_at":"2023-03-25T21:05:02.000Z","size":44,"stargazers_count":39,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-07T23:03:36.810Z","etag":null,"topics":["cli-app","jitsi-meet","meetings","video-chat"],"latest_commit_sha":null,"homepage":"","language":"Crystal","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ryanprior.png","metadata":{"files":{"readme":"README.md","changelog":"Changelog.md","contributing":null,"funding":".github/FUNDING.yml","license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null},"funding":{"github":"ryanprior","liberapay":"ryanprior"}},"created_at":"2020-05-21T19:55:53.000Z","updated_at":"2025-02-14T18:13:28.000Z","dependencies_parsed_at":"2024-01-27T09:09:45.989Z","dependency_job_id":"26cc4943-fcc6-42d1-9289-1b7d2e9fb0bd","html_url":"https://github.com/ryanprior/meet","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanprior%2Fmeet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanprior%2Fmeet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanprior%2Fmeet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanprior%2Fmeet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ryanprior","download_url":"https://codeload.github.com/ryanprior/meet/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254160647,"owners_count":22024574,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli-app","jitsi-meet","meetings","video-chat"],"created_at":"2024-08-01T21:01:06.642Z","updated_at":"2025-05-14T14:34:17.210Z","avatar_url":"https://github.com/ryanprior.png","language":"Crystal","funding_links":["https://github.com/sponsors/ryanprior","https://liberapay.com/ryanprior"],"categories":["Crystal","CLI Utils"],"sub_categories":[],"readme":"# Meet\n\nStart a [Jitsi](https://meet.jit.si) meeting quickly with `meet`. It creates a\nmeeting with a secure ID and prints the meeting URL to `stdout`. It can style,\nopen, copy, and send the URL for your convenience. No registration required, no\ndata collected.\n\n### Dependencies\n\n`meet` has no required runtime dependencies.\n\nJitsi requires a browser like Firefox, the [Jitsi Desktop\napp](https://desktop.jitsi.org/), or a telephone to join a meeting.\n\n*Optional* dependencies add more features:\n- `xsel` to copy URL to clipboard\n- `xdg-open` to open the URL in your browser\n- `keybase` to send the URL to a friend\n\n## Usage\n\n```sh-session\n$ meet\nhttps://meet.jit.si/A8ul9DAc/Meeting\n$ meet -c hack on meet\nhttps://meet.jit.si/iN9SYLvP/HackOnMeet\n🚀 copied to clipboard!\n```\n\n### Configuration\n\nMeet works without any configuration files. Optionally, you can initialize to change defaults:\n\n```sh-session\n$ meet --init\nBase url (meet.jit.si): my-jitsi-server.local\nAdd random letters to URL for security? (Y/n): n\n📝 wrote config to /home/user/.config/meet/settings.yml\n$ ./meet hack on meet\nhttps://my-jitsi-server.local/HackOnMeet\n```\n\nMeet respects the `XDG_CONFIG_HOME` environment variable if it's set.\n\n### Options\n\n| feature  |   short   |        long        |                 description                  |\n|----------|-----------|--------------------|----------------------------------------------|\n| settings |           | `--init`           | initialize meet settings                     |\n|          | `-u URL`  | `--use URL`        | use URL for this meeting                     |\n|          | `-i`      | `--insecure`       | omit secure random portion of URL            |\n|          |           | `--secure`         | always include secure random portion         |\n| style    | `-s`      | `--snake`          | use snake_case for meeting title             |\n|          | `-d`      | `--dash`           | use dashes for meeting title                 |\n|          | `-t`      | `--title`          | use TitleCase for meeting title (default)    |\n|          | `-S`      | `--shout`          | use SHOUT👏️CASE🗯️ for meeting title        |\n|          | `-3`      | `--heart`          | use ❣️heart❤️style❣️ for meeting title       |\n|          | `-j TEXT` | `--emoji=TEXT`     | put `TEXT` between words of meeting title    |\n| open     | `-o`      | `--open`           | open url in your browser after a short pause |\n|          | `-O`      | `--open-immediate` | open url in your browser immediately         |\n| copy     | `-c`      | `--copy`           | copy url to clipboard using `xsel`           |\n| send     | `-k USER` | `--send-kb=USER`   | send url to `USER` on Keybase                |\n\n## Installation\n\nGo to [releases](https://github.com/ryanprior/meet/releases) and download the\nlatest archive. Then unpack it somewhere on your PATH, such as:\n\n```sh-session\n$ cd ~/Downloads\n$ tar xzf meet-1.2.0.tgz\n$ sudo install meet /usr/local/bin/meet\n```\n\n### Installation from source\n\nTo install `meet` from source, you will need these dependencies:\n- git\n- make\n- [crystal](https://crystal-lang.org/)\n- coreutils\n- readline\n\nCrystal has these transitive dependencies: `gcc`, `pkg-config`, `libpcre3-dev`,\n`libevent-dev`.\n\n\nFollow these steps to install:\n```sh-session\n$ git clone https://github.com/ryanprior/meet.git\n$ cd meet\n$ make\n$ sudo make install\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryanprior%2Fmeet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fryanprior%2Fmeet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryanprior%2Fmeet/lists"}