update README.md

This commit is contained in:
Ludwig Lehnert 2025-05-13 21:38:51 +02:00
parent d97fc9242b
commit 9bb154dd22
Signed by: ludwig
SSH Key Fingerprint: SHA256:4vshH9GJ8TLO1RS2fY6rDDLnq7+KVvSClCY+uEhYYRA
2 changed files with 2 additions and 3 deletions

View File

@ -6,6 +6,4 @@ COPY index.js package*.json ./
RUN npm install --production RUN npm install --production
EXPOSE 8080
CMD ["node", "index.js"] CMD ["node", "index.js"]

View File

@ -5,7 +5,8 @@
Simple HTTP server impl that can be used for DHTs that can store multiple values at once, Simple HTTP server impl that can be used for DHTs that can store multiple values at once,
using the techniques described in the infamous [Kademlia paper](https://pdos.csail.mit.edu/~petar/papers/maymounkov-kademlia-lncs.pdf). using the techniques described in the infamous [Kademlia paper](https://pdos.csail.mit.edu/~petar/papers/maymounkov-kademlia-lncs.pdf).
Such a design may be useful, when wanting Such a design may be useful when wanting to connect multiple peers with each other.
Think of meetings in the browser where participants must be connected via WebRTC.
## Limitations ## Limitations