Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martindale/kad-rest
REST wrapper around Kad
https://github.com/martindale/kad-rest
Last synced: 10 days ago
JSON representation
REST wrapper around Kad
- Host: GitHub
- URL: https://github.com/martindale/kad-rest
- Owner: martindale
- Created: 2015-11-08T21:57:05.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-08T18:04:05.000Z (almost 9 years ago)
- Last Synced: 2024-10-06T03:08:59.560Z (about 1 month ago)
- Language: JavaScript
- Size: 0 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kad REST
This is a REST API on top of Kad DHT
## Quick Start
The Kademelia DHT implementation is by [Gordon Hall's Kad project](http://github.com/gordonwritescode)
```
# getting the code
[email protected]:niahmiah/kad-rest.git && cd kad-rest
```### Configuring the seed list
Create the file config/local.json, and populate it with your seeds in the following format.
```
{
"kad": {
"seeds": [
{ "address": "some.domain.name", port: 35000 },
{ "address": "some.other.name", port: 35000 },
]
}
}
``````
# running the server
npm install
npm start
```