
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
tauri-plugin-hwinfo
Advanced tools
A cross-platform Tauri plugin to fetch detailed system hardware information from the user's device, including CPU, RAM, GPU, and OS metadata — all accessible through both Rust and JavaScript/TypeScript APIs.
⚠️ Platform Support: Desktop-only. Mobile support returns placeholder values.
⚠️ Testing: Only Windows is tested and confirmed working so far.
@tauri-apps/api/core::invoke[dependencies]
tauri-plugin-hwinfo = "0.1.0"
🔖 Replace with the latest version from crates.io
[dependencies]
tauri-plugin-hwinfo = { git = "https://github.com/nikolchaa/tauri-plugin-hwinfo", tag = "v0.1.0" }
use tauri_plugin_hwinfo::init;
fn main() {
tauri::Builder::default()
.plugin(init())
.run(tauri::generate_context!())
.expect("failed to run app");
}
⚠️ Add the following permissions to your src-tauri/capabilities/default.json
{
"permissions": [
"hwinfo:allow-cpu-info",
"hwinfo:allow-gpu-info",
"hwinfo:allow-ram-info",
"hwinfo:allow-os-info"
]
}
Install via NPM (once published), or link locally if using manually.
import {
getCpuInfo,
getRamInfo,
getGpuInfo,
getOsInfo,
} from "tauri-plugin-hwinfo";
async function showCpuInfo() {
const cpu = await getCpuInfo();
console.log(cpu.model);
}
FAQs
A cross-platform Tauri plugin to fetch CPU, RAM, GPU, and OS info.
The npm package tauri-plugin-hwinfo receives a total of 28 weekly downloads. As such, tauri-plugin-hwinfo popularity was classified as not popular.
We found that tauri-plugin-hwinfo demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.