This commit is contained in:
Rene Fichtmueller 2026-03-19 15:42:02 +10:00
parent c16e36c628
commit ddd0a592aa
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,7 @@
# transceiver-db
> **[🚀 Live Demo](https://transceiver-db-demo.pages.dev)** — Try it in your browser, no installation needed.
[![npm version](https://img.shields.io/npm/v/transceiver-db.svg)](https://www.npmjs.com/package/transceiver-db)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![TypeScript](https://img.shields.io/badge/TypeScript-Ready-blue.svg)](https://www.typescriptlang.org/)
@ -13,6 +15,8 @@ From 1G SFP to 800G OSFP. Zero dependencies.
## Why?
> **[🚀 Live Demo](https://transceiver-db-demo.pages.dev)** — Try it in your browser, no installation needed.
No open-source transceiver database existed. Network engineers, inventory systems, and automation tools had to maintain their own fragmented lists. Now there is a single, typed, searchable source of truth.
## Install

View File

@ -116,7 +116,7 @@ export interface Standard {
export interface Competitor {
name: string;
type: "OEM" | "Whitebox" | "Manufacturer" | "Distributor";
type: "OEM" | "Whitebox" | "Manufacturer" | "Distributor" | "Compatible";
headquarters: string;
marketPosition: string;
formFactorsOffered: string[];