USB vendor ids list
npm install usb-vendor-idsThis npm package contains a list of USB vendors with an id.
npm i --save-dev usb-vendor-idsjs
import { usbVendorIds, getUsbVendorById } from 'usb-vendor-ids';const vendor = getUsbVendorById(1414);
console.log(vendor); // "ZyXEL Communications Corp"
// Output list of USB vendors with ids
console.log(usbVendorIds);
// [
// ...
// [
// 1414,
// "ZyXEL Communications Corp"
// ]
// ]
``Updated: 2025-12-12