A quick vibe-coded site to test response times of PLC.directory mirrors (over 3 attempts)
1export interface Mirror {
2 url: string;
3 implementation: string;
4}
5
6export const mirrors: Mirror[] = [
7 {
8 url: "https://plc.directory",
9 implementation: "Reference",
10 },
11 {
12 url: "https://plc.wtf",
13 implementation: "Allegedly",
14 },
15 {
16 url: "https://allegedly.wallera.computer",
17 implementation: "Allegedly",
18 },
19 {
20 url: "https://plc.parakeet.at",
21 implementation: "Parakeet",
22 },
23 {
24 url: "https://plcbundle.atscan.net",
25 implementation: "PLCBundle",
26 },
27];