{"library":"oui-data","title":"IEEE OUI Database","description":"oui-data provides the IEEE Organizationally Unique Identifier (OUI) database as a static JSON file, enabling programmatic access to MAC address vendor information. The current stable version is 1.1.571. This package primarily serves as a data source, with updates typically tied to upstream IEEE OUI registry changes and dependency bumps, implying an as-needed release cadence rather than a fixed schedule. Its key differentiator is simplicity and direct JSON export, making it easy to consume in environments that support JSON module imports or require/import raw JSON. It eschews any processing logic or API, focusing solely on delivering the raw, structured OUI data.","language":"javascript","status":"active","last_verified":"Wed Apr 22","install":{"commands":["npm install oui-data"],"cli":null},"imports":["import ouiData from 'oui-data' with {type: 'json'};","const ouiData = require('oui-data');","import data from 'oui-data/index.json';"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import ouiData from 'oui-data' with {type: 'json'};\n\nconst lookupOUI = (oui) => {\n  const entry = ouiData[oui.toUpperCase()];\n  if (entry) {\n    return `${entry.company} - ${entry.address}\\n${entry.city} ${entry.state} ${entry.zipCode}\\n${entry.country}`;\n  } else {\n    return `OUI '${oui}' not found.`;\n  }\n};\n\nconsole.log(lookupOUI('203706'));\n// Example for an unknown OUI\nconsole.log(lookupOUI('000000'));","lang":"javascript","description":"Demonstrates how to import the oui-data JSON and perform a lookup for a specific OUI to retrieve vendor information, handling both found and not-found cases.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}