mirror of
https://github.com/cwinfo/hyperboria-peers.git
synced 2024-11-22 14:10:27 +00:00
got bored and did a little data entry
now you can `require("peers")`
This commit is contained in:
parent
c086fc0bda
commit
d4f93ae130
95
index.js
Normal file
95
index.js
Normal file
@ -0,0 +1,95 @@
|
||||
var Fs = require("fs"),
|
||||
R = function (p) {
|
||||
return JSON.parse(Fs.readFileSync(p, 'utf-8'));
|
||||
},
|
||||
P = module.exports.peers = {
|
||||
AS: {
|
||||
hk: {
|
||||
'hk.hub.icfreedom.net.k': R('./AS/hk/hk.hub.icfreedom.net.k'),
|
||||
},
|
||||
sg: {
|
||||
singapore: {
|
||||
'sg.hub.icfreedom.net.k': R('./AS/sg/singapore/sg.hub.icfreedom.net.k'),
|
||||
'weuxel.sing.k': R('./AS/sg/singapore/weuxel.sing.k'),
|
||||
},
|
||||
},
|
||||
},
|
||||
EU: {
|
||||
de: {
|
||||
bavaria: {
|
||||
'hype.jazzanet.com.k': R('./EU/de/bavaria/hype.jazzanet.com.k'),
|
||||
},
|
||||
},
|
||||
fr: {
|
||||
'nord-pas-de-calais': {
|
||||
'hub.icfreedom.net.k': R('./EU/fr/nord-pas-de-calais/hub.icfreedom.net.k'),
|
||||
'play.fallofanempire.com.k': R('./EU/fr/nord-pas-de-calais/play.fallofanempire.com.k'),
|
||||
},
|
||||
strasbourg: {
|
||||
'magik6k.net.k': R('./EU/fr/strasbourg/magik6k.net.k'),
|
||||
},
|
||||
},
|
||||
gr: {
|
||||
rethymno: {
|
||||
'kaotisk.rethymno-meshnet.k': R('./EU/gr/rethymno/kaotisk.rethymno-meshnet.k'),
|
||||
},
|
||||
},
|
||||
md: {
|
||||
chisinau: {
|
||||
'eu-east.hub.icfreedom.net.k': R('./EU/md/chisinau/eu-east.hub.icfreedom.net.k'),
|
||||
},
|
||||
},
|
||||
nl: {
|
||||
amsterdam: {
|
||||
'mrowr.me.k': R('./EU/nl/amsterdam/mrowr.me.k'),
|
||||
'weuxel.ams.k': R('./EU/nl/amsterdam/weuxel.ams.k'),
|
||||
},
|
||||
},
|
||||
ru: {
|
||||
moscow: {
|
||||
'h.bunjlabs.com.k': R('./EU/ru/moscow/h.bunjlabs.com.k'),
|
||||
},
|
||||
},
|
||||
se: {
|
||||
lulea: {
|
||||
'bliss.willeponken.me.k': R('./EU/se/lulea/bliss.willeponken.me.k'),
|
||||
},
|
||||
},
|
||||
uk: {
|
||||
london: {
|
||||
'ansuz.science.k': R('./EU/uk/london/ansuz.science.k'),
|
||||
},
|
||||
},
|
||||
},
|
||||
NA: {
|
||||
ca: {
|
||||
quebec: {
|
||||
'ca.hub.icfreedom.net.k': R('./NA/ca/quebec/ca.hub.icfreedom.net.k'),
|
||||
},
|
||||
beauharnois: {
|
||||
'derp.fusion.k': R('./NA/ca/beauharnois/derp.fusion.k'),
|
||||
},
|
||||
},
|
||||
us: {
|
||||
california: {
|
||||
'igel-california.usa.k': R('./NA/us/california/igel-california.usa.k'),
|
||||
},
|
||||
newyork: {
|
||||
'jacobhenner.usa.k': R('./NA/us/newyork/jacobhenner.usa.k'),
|
||||
'weuxel.usa.k': R('./NA/us/newyork/weuxel.usa.k'),
|
||||
},
|
||||
northcarolina: {
|
||||
'igel-northcarolina.usa.k': R('./NA/us/northcarolina/igel-northcarolina.usa.k'),
|
||||
|
||||
},
|
||||
oregon: {
|
||||
'h.us-west.hub.icfreedom.net.k': R('./NA/us/oregon/h.us-west.hub.icfreedom.net.k'),
|
||||
},
|
||||
pennsylvania: {
|
||||
'nat.usa.k': R('./NA/us/pennsylvania/nat.usa.k'),
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
//console.log(JSON.stringify(P, null, 2));
|
Loading…
Reference in New Issue
Block a user