Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/NZXTCorp/web-integrations-types
Type Definitions for NZXT CAM Web Integrations
https://github.com/NZXTCorp/web-integrations-types
Last synced: about 5 hours ago
JSON representation
Type Definitions for NZXT CAM Web Integrations
- Host: GitHub
- URL: https://github.com/NZXTCorp/web-integrations-types
- Owner: NZXTCorp
- License: mit
- Created: 2023-04-03T19:19:22.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-17T19:19:13.000Z (3 months ago)
- Last Synced: 2024-11-29T07:41:16.630Z (14 days ago)
- Language: JavaScript
- Homepage: https://developer.nzxt.com
- Size: 27.3 KB
- Stars: 5
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Web Integrations Monitoring Types
NZXT CAM is a hardware monitoring software that provides users with information on the performance
of various hardware components in their PC, including CPUs, GPUs, and RAM.In Web Integration mode on Kraken devices, CAM provides monitoring data to the web application
through the browser every second. This data can be used to create custom visualizations with
monitoring information.## Installation
```bash
npm install @nzxt/web-integrations
```## Examples
```ts
import { MonitoringData } from "@nzxt/web-integrations/v1";window.nzxt = {
v1: {
onMonitoringDataUpdate: (data: MonitoringData) => {
// ...
},
},
};
```