{"id":22514632,"url":"https://github.com/cityssm/node-web-browser-info","last_synced_at":"2026-01-07T18:09:42.151Z","repository":{"id":230237309,"uuid":"778802957","full_name":"cityssm/node-web-browser-info","owner":"cityssm","description":"Retrieves details about installed web browsers.","archived":false,"fork":false,"pushed_at":"2025-03-10T06:28:20.000Z","size":400,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-03T22:43:50.080Z","etag":null,"topics":["chrome","firefox","web-browser"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@cityssm/web-browser-info","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cityssm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-28T12:42:26.000Z","updated_at":"2024-12-20T17:56:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"734d60fb-fb46-421c-bbca-558899a1a09f","html_url":"https://github.com/cityssm/node-web-browser-info","commit_stats":{"total_commits":20,"total_committers":1,"mean_commits":20.0,"dds":0.0,"last_synced_commit":"75b0deb9b04eea41ec23de5b04610ff5c6de3358"},"previous_names":["cityssm/node-web-browser-info"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/cityssm/node-web-browser-info","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cityssm%2Fnode-web-browser-info","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cityssm%2Fnode-web-browser-info/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cityssm%2Fnode-web-browser-info/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cityssm%2Fnode-web-browser-info/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cityssm","download_url":"https://codeload.github.com/cityssm/node-web-browser-info/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cityssm%2Fnode-web-browser-info/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260571110,"owners_count":23029824,"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":["chrome","firefox","web-browser"],"created_at":"2024-12-07T03:19:27.356Z","updated_at":"2026-01-07T18:09:42.123Z","avatar_url":"https://github.com/cityssm.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Web Browser Info\n\n[![npm (scoped)](https://img.shields.io/npm/v/@cityssm/web-browser-info)](https://www.npmjs.com/package/@cityssm/web-browser-info)\n[![DeepSource](https://app.deepsource.com/gh/cityssm/node-web-browser-info.svg/?label=active+issues\u0026show_trend=true\u0026token=UihEHJULs-0PJTFYNmxfmjj-)](https://app.deepsource.com/gh/cityssm/node-web-browser-info/)\n[![Maintainability](https://api.codeclimate.com/v1/badges/2afbcf22ea3328e30fec/maintainability)](https://codeclimate.com/github/cityssm/node-web-browser-info/maintainability)\n[![codecov](https://codecov.io/gh/cityssm/node-web-browser-info/graph/badge.svg?token=ZA04Y3J8R9)](https://codecov.io/gh/cityssm/node-web-browser-info)\n[![Coverage Testing](https://github.com/cityssm/node-web-browser-info/actions/workflows/coverage.yml/badge.svg)](https://github.com/cityssm/node-web-browser-info/actions/workflows/coverage.yml)\n\nRetrieves details about installed web browsers,\nusing the fantastic [@httptoolkit/browser-launcher](https://www.npmjs.com/package/@httptoolkit/browser-launcher) package.\n\nProvides helper functions to filter the returned browsers by type and version.\n\n## Installation\n\n```sh\nnpm install @cityssm/web-browser-info\n```\n\n## Usage\n\n```javascript\nimport {\n  chromeWebBrowserTypes,\n  getInstalledWebBrowsers \n} from '@cityssm/web-browser-info'\n\n// Get all web browsers\nconst allWebBrowsers = await getInstalledWebBrowsers()\n\n// Get all Firefox web browsers\nconst firefoxWebBrowsers = await getInstalledWebBrowsers('firefox')\n\n// Get all Chrome-based (chrome or chromium) web browsers\nconst chromeWebBrowsers = await getInstalledWebBrowsers(chromeWebBrowserTypes)\n\n// Get all Firefox web browsers newer than version 100\nconst newerFirefoxWebBrowsers = await getInstalledWebBrowsers('firefox', 100)\n```\n\n## Sample Output\n\n```javascript\n[\n  {\n    name: 'msedge',\n    version: '122.0.2365.92',\n    type: 'msedge',\n    command: 'C:\\\\Program Files (x86)\\\\Microsoft\\\\Edge\\\\Application\\\\msedge.exe',\n    majorVersion: 122,\n    minorVersion: 0\n  },\n  {\n    name: 'ie',\n    version: '11.00.22621.1',\n    type: 'ie',\n    command: 'C:\\\\Program Files\\\\Internet Explorer\\\\iexplore.exe',\n    majorVersion: 11,\n    minorVersion: 0\n  },\n  {\n    name: 'ie',\n    version: '11.00.22621.1',\n    type: 'ie',\n    command: 'C:\\\\Program Files (x86)\\\\Internet Explorer\\\\iexplore.exe',\n    majorVersion: 11,\n    minorVersion: 0\n  },\n  {\n    name: 'chrome',\n    version: '123.0.6312.86',\n    type: 'chrome',\n    command: 'C:\\\\Program Files\\\\Google\\\\Chrome\\\\Application\\\\chrome.exe',\n    majorVersion: 123,\n    minorVersion: 0\n  },\n  {\n    name: 'firefox',\n    version: '124.0.1',\n    type: 'firefox',\n    command: 'C:\\\\Program Files\\\\Mozilla Firefox\\\\firefox.exe',\n    majorVersion: 124,\n    minorVersion: 0\n  }\n]\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcityssm%2Fnode-web-browser-info","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcityssm%2Fnode-web-browser-info","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcityssm%2Fnode-web-browser-info/lists"}