{"id":15797914,"url":"https://github.com/grokify/glip-webhook-proxy-js","last_synced_at":"2025-07-06T17:02:45.718Z","repository":{"id":142759183,"uuid":"80402462","full_name":"grokify/glip-webhook-proxy-js","owner":"grokify","description":"Inbound webhook proxy for Glip (https://glip.com) in JavaScript","archived":false,"fork":false,"pushed_at":"2017-01-30T08:59:38.000Z","size":156,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-06T17:02:11.135Z","etag":null,"topics":["glip","glip-webhook","javascript","webhook"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/grokify.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-01-30T07:48:09.000Z","updated_at":"2017-02-08T08:20:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"2bdff191-343e-4ffe-9279-ed264ecd2709","html_url":"https://github.com/grokify/glip-webhook-proxy-js","commit_stats":{"total_commits":3,"total_committers":1,"mean_commits":3.0,"dds":0.0,"last_synced_commit":"4332109a4f374514cb3a56ef89b41a0d43808d97"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/grokify/glip-webhook-proxy-js","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grokify%2Fglip-webhook-proxy-js","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grokify%2Fglip-webhook-proxy-js/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grokify%2Fglip-webhook-proxy-js/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grokify%2Fglip-webhook-proxy-js/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/grokify","download_url":"https://codeload.github.com/grokify/glip-webhook-proxy-js/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grokify%2Fglip-webhook-proxy-js/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263940232,"owners_count":23533006,"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":["glip","glip-webhook","javascript","webhook"],"created_at":"2024-10-05T00:21:55.215Z","updated_at":"2025-07-06T17:02:45.655Z","avatar_url":"https://github.com/grokify.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Glip Webhook Proxy\n==================\n\n[![Scrutinizer Code Quality][scrutinizer-status-svg]][scrutinizer-status-link]\n\nProxy service to map different requests to Glip's inbound webhook service. This is useful because various chat services have similar, but slightly different inbound webhook services. This proxy service does the conversion so you don't have to. Applications already integrated with Slack's inbound webhooks can create messages on Glip simply by using the proxy URL.\n\nConversion of the following webhook message formats to Glip inbound webhooks include:\n\n* Travis CI (outbound)\n\nExample Webhook Message from Travis CI:\n\n![](docs/images/travisci_glip.png)\n\n## Installation\n\n```\n$ git clone https://github.com/grokify/glip-webhook-proxy\n```\n\n## Usage\n\n### Starting the Service\n\nStart the service with the following.\n\n```\n$ cd glip-webhook-proxy\n$ MY_APP_PORT=8080 node index.js\n```\n\n### Creating the Glip Webhook\n\n1. create a Glip webhook\n2. use webhook URL's GUID to create the proxy URL as shown below\n3. use the proxy URL in your outbound webhook service\n\n| Service | URL |\n|------|-------|\n| Glip | `https://hooks.glip.com/webhook/11112222-3333-4444-5555-666677778888` |\n| Travis CI Outbound | `https://example.com/webhook/travisci/out/glip/11112222-3333-4444-5555-666677778888` |\n\nThe webhook proxy URLs support both inbound and outbound formats. For example:\n\n* when using Travis CI's webhook format use `travisci/out/glip` to indicate converting a Travis CI outbound webhook format message to Glip.\n\nTo create the Glip webhook and receive a webhook URL do the following:\n\n#### Add the Webhook Integration\n\nAt the top of any conversation page, click the Settings gear icon and then click `Add Integration`.\n\n![](docs/images/glip_webhook_step-1_add-integration.png)\n\nSelect the `Glip Webhooks` integration.\n\n![](docs/images/glip_webhook_step-2_add-webhook.png)\n\n#### Get the Webhook URL\n\nOnce you get the URL, the proxy URL is created by appending the GUID (e.g. `1112222-3333-4444-5555-666677778888`) to the proxy URL base, `/webhook/slack/glip` (e.g. `https://glip-proxy.example.com/webhook/slack/glip/1112222-3333-4444-5555-666677778888`). Use the proxy URL in the app that is posting the Slack webhook and the payload will be sent to Glip.\n\n![](docs/images/glip_webhook_step-3_details.png)\n\n## Notes\n\nGlip Webhook Proxy is built using:\n\n* [express](https://github.com/expressjs/express)\n\n [scrutinizer-status-svg]: https://scrutinizer-ci.com/g/grokify/glip-webhook-proxy/badges/quality-score.png?b=master\n [scrutinizer-status-link]: https://scrutinizer-ci.com/g/grokify/glip-webhook-proxy/?branch=master\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrokify%2Fglip-webhook-proxy-js","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgrokify%2Fglip-webhook-proxy-js","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrokify%2Fglip-webhook-proxy-js/lists"}