{"id":16256112,"url":"https://github.com/zalweny26/capacitor-systeminfo","last_synced_at":"2026-05-03T17:34:24.771Z","repository":{"id":194292614,"uuid":"688904987","full_name":"zAlweNy26/capacitor-systeminfo","owner":"zAlweNy26","description":"Capacitor plugin to get access to every info about the device software and hardware","archived":false,"fork":false,"pushed_at":"2025-09-15T20:47:06.000Z","size":335,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-06T14:21:04.931Z","etag":null,"topics":["android","capacitor","capacitor-plugin","ios","kotlin","plugin","swift","system-information","typescript","web"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@danyalwe/capacitor-systeminfo","language":"Kotlin","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/zAlweNy26.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-09-08T10:57:23.000Z","updated_at":"2025-09-15T20:46:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"e603e59e-26d7-4ccd-b2b8-ea86a1ef03bc","html_url":"https://github.com/zAlweNy26/capacitor-systeminfo","commit_stats":null,"previous_names":["zalweny26/capacitor-systeminfo"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/zAlweNy26/capacitor-systeminfo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zAlweNy26%2Fcapacitor-systeminfo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zAlweNy26%2Fcapacitor-systeminfo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zAlweNy26%2Fcapacitor-systeminfo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zAlweNy26%2Fcapacitor-systeminfo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zAlweNy26","download_url":"https://codeload.github.com/zAlweNy26/capacitor-systeminfo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zAlweNy26%2Fcapacitor-systeminfo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32578789,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["android","capacitor","capacitor-plugin","ios","kotlin","plugin","swift","system-information","typescript","web"],"created_at":"2024-10-10T15:44:29.496Z","updated_at":"2026-05-03T17:34:24.765Z","avatar_url":"https://github.com/zAlweNy26.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Capacitor Plugin - SystemInfo\n\nGet access to every info about the device software and hardware!\n\nSupported Android version: `23+`\\\nSupported iOS version: `Not supported`\\\nSupported Browsers: `Chromium-based`\n\n## Install\n\n```bash\nnpm install @danyalwe/capacitor-systeminfo\nnpx cap sync\n```\n\n## Todos\n\n- [ ] Add support for iOS\n- [ ] Add CPU usage\n\n## Example\n\nThe following example demonstrates how to use the SystemInfo plugin to access the device's info:\n\n```ts\nimport { SystemInfo } from '@danyalwe/capacitor-systeminfo'\n\n// Get all system informations\nconst info = await SystemInfo.getInfos()\n\n// Add a listener to receive used ram, hdd and sd every second\nSystemInfo.addListener('runtimeChange', (data) =\u003e {\n  console.log('Runtime data:', data)\n})\n\n// Be sure to start ALWAYS AFTER adding the listener\nawait SystemInfo.start()\n\n// Stop the listener\nawait SystemInfo.stop()\n```\n\n## Supported methods\n\n| Name               | Android | iOS | Web |\n| :----------------- | :------ | :-- | :-- |\n| getInfos           | ✅      | ❌  | ✅  |\n| start              | ✅      | ❌  | ❌  |\n| stop               | ✅      | ❌  | ❌  |\n| addListener        | ✅      | ❌  | ❌  |\n| removeAllListeners | ✅      | ❌  | ❌  |\n\n## Supported properties\n\n| SoftwareInfos           | Android | iOS | Web |\n| :---------------------- | :------ | :-- | :-- |\n| **`osName`**            | ✅      | ❌  | ✅  |\n| **`osVersion`**         | ✅      | ❌  | ✅  |\n| **`brandName`**         | ✅      | ❌  | ✅  |\n| **`sdkVersion`**        | ✅      | ❌  | ❌  |\n| **`sdkName`**           | ✅      | ❌  | ❌  |\n| **`securityPatch`**     | ✅      | ❌  | ❌  |\n| **`uiVersion`**         | ✅      | ❌  | ❌  |\n| **`deviceID`**          | ✅      | ❌  | ❌  |\n| **`boardName`**         | ✅      | ❌  | ❌  |\n| **`bootloaderVersion`** | ✅      | ❌  | ❌  |\n| **`supportedABIs`**     | ✅      | ❌  | ❌  |\n\n| HardwareInfos       | Android | iOS | Web |\n| :------------------ | :------ | :-- | :-- |\n| **`manufacturer`**  | ✅      | ❌  | ✅  |\n| **`features`**      | ✅      | ❌  | ✅  |\n| **`totalCores`**    | ✅      | ❌  | ✅  |\n| **`totalRAM`**      | ✅      | ❌  | ✅  |\n| **`totalHDD`**      | ✅      | ❌  | ⚠️  |\n| **`totalSD`**       | ✅      | ❌  | ❌  |\n| **`modelID`**       | ✅      | ❌  | ❌  |\n| **`modelCodeName`** | ✅      | ❌  | ❌  |\n| **`cpuModel`**      | ✅      | ❌  | ❌  |\n| **`cpuCores`**      | ✅      | ❌  | ❌  |\n\n⚠️: Not real total, it's the available\n\n| RuntimeInfos  | Android | iOS | Web |\n| :------------ | :------ | :-- | :-- |\n| **`usedRAM`** | ✅      | ❌  | ❌  |\n| **`usedHDD`** | ✅      | ❌  | ❌  |\n| **`usedSD`**  | ✅      | ❌  | ❌  |\n\n## API\n\n\u003cdocgen-index\u003e\n\n* [Interfaces](#interfaces)\n* [Type Aliases](#type-aliases)\n\n\u003c/docgen-index\u003e\n\n\u003cdocgen-api\u003e\n\u003c!--Update the source file JSDoc comments and rerun docgen to update the docs below--\u003e\n\nInterface for the System Info plugin\n\n### Interfaces\n\n#### SoftwareInfos\n\nRepresents software information about a device.\n\n| Prop                    | Type                | Description                                          |\n| ----------------------- | ------------------- | ---------------------------------------------------- |\n| **`osName`**            | \u003ccode\u003estring\u003c/code\u003e | The name of the operating system.                    |\n| **`osVersion`**         | \u003ccode\u003estring\u003c/code\u003e | The version of the operating system.                 |\n| **`brandName`**         | \u003ccode\u003estring\u003c/code\u003e | The name of the device brand.                        |\n| **`sdkVersion`**        | \u003ccode\u003enumber\u003c/code\u003e | The version of the SDK (if applicable).              |\n| **`sdkName`**           | \u003ccode\u003estring\u003c/code\u003e | The name of the SDK (if applicable).                 |\n| **`securityPatch`**     | \u003ccode\u003estring\u003c/code\u003e | The security patch level (if applicable).            |\n| **`uiVersion`**         | \u003ccode\u003estring\u003c/code\u003e | The version of the UI (if applicable).               |\n| **`deviceID`**          | \u003ccode\u003estring\u003c/code\u003e | The unique identifier of the device (if applicable). |\n| **`boardName`**         | \u003ccode\u003estring\u003c/code\u003e | The name of the device board (if applicable).        |\n| **`bootloaderVersion`** | \u003ccode\u003estring\u003c/code\u003e | The version of the bootloader (if applicable).       |\n| **`supportedABIs`**     | \u003ccode\u003e{}\u003c/code\u003e     | The list of supported ABIs (if applicable).          |\n\n#### HardwareInfos\n\nRepresents hardware information of a device.\n\n| Prop                | Type                | Description                                 |\n| ------------------- | ------------------- | ------------------------------------------- |\n| **`modelID`**       | \u003ccode\u003estring\u003c/code\u003e | The model ID of the device.                 |\n| **`modelCodeName`** | \u003ccode\u003estring\u003c/code\u003e | The code name of the device model.          |\n| **`cpuModel`**      | \u003ccode\u003estring\u003c/code\u003e | The model of the CPU.                       |\n| **`cpuCores`**      | \u003ccode\u003e{}\u003c/code\u003e     | The number of cores and threads of the CPU. |\n| **`totalSD`**       | \u003ccode\u003enumber\u003c/code\u003e | The total size of the SD card in bytes.     |\n| **`totalHDD`**      | \u003ccode\u003enumber\u003c/code\u003e | The total size of the HDD in bytes.         |\n| **`totalRAM`**      | \u003ccode\u003enumber\u003c/code\u003e | The total size of the RAM in bytes.         |\n| **`totalCores`**    | \u003ccode\u003enumber\u003c/code\u003e | The total number of cores in the CPU.       |\n| **`manufacturer`**  | \u003ccode\u003estring\u003c/code\u003e | The manufacturer of the device.             |\n| **`features`**      | \u003ccode\u003e{}\u003c/code\u003e     | The features supported by the device.       |\n\n#### RuntimeInfos\n\nInterface for runtime information.\n\n| Prop          | Type                | Description                                  |\n| ------------- | ------------------- | -------------------------------------------- |\n| **`usedRAM`** | \u003ccode\u003enumber\u003c/code\u003e | The amount of used RAM in bytes.             |\n| **`usedHDD`** | \u003ccode\u003enumber\u003c/code\u003e | The amount of used HDD in bytes.             |\n| **`usedSD`**  | \u003ccode\u003enumber\u003c/code\u003e | The amount of used SD card storage in bytes. |\n\n#### PluginListenerHandle\n\n| Prop         | Type                      |\n| ------------ | ------------------------- |\n| **`remove`** | \u003ccode\u003e() =\u0026gt; any\u003c/code\u003e |\n\n### Type Aliases\n\n#### SystemInformations\n\nRepresents a collection of system information, including both software and hardware information.\n\n\u003ccode\u003e\u003ca href=\"#softwareinfos\"\u003eSoftwareInfos\u003c/a\u003e \u0026 \u003ca href=\"#hardwareinfos\"\u003eHardwareInfos\u003c/a\u003e\u003c/code\u003e\n\n#### Features\n\nRepresents the available features that can be queried using the Capacitor System Info plugin.\n\n\u003ccode\u003e'bluetooth' | 'bluetoothLowEnergy' | 'microphone' | 'speaker' | 'nfc' | 'camera' | 'gamepad' | 'gps' | 'touchscreen' | 'wifi' | 'fingerprint' | 'face' | 'ethernet'\u003c/code\u003e\n\n\u003c/docgen-api\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzalweny26%2Fcapacitor-systeminfo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzalweny26%2Fcapacitor-systeminfo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzalweny26%2Fcapacitor-systeminfo/lists"}