Skip to main content

Overview

Returns the SSID (network name) of the currently connected WiFi network.
const useWifiSSID: () => string | undefined

Usage

import { useWifiSSID } from 'node-fullykiosk';

function WiFiInfo() {
  const ssid = useWifiSSID();

  return (
    <div>
      <h2>Connected Network</h2>
      <p>{ssid || 'Not connected'}</p>
    </div>
  );
}

Return Value

ssid
string | undefined
The SSID (name) of the connected WiFi network (e.g., “MyHomeNetwork”), or undefined if Fully Kiosk Browser is not available or not connected to WiFi.

Build docs developers (and LLMs) love