dwebprotocol / tunnel

dWeb-based tunneling service.

Home Page:https://dwebx.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@dswarm/tunnel

Tunneling service for DSwarm

npm install @dswarm/tunnel

Usage

const { Remote, Local } = require('@dswarm/tunnel')

On a remote server run the tunneler

const r = new Remote()

r.listen(10000) // listen on port 10000

Then on a client you can start a server that's being announced

const l = new Local(10000, 'remote-server.com')

const s = l.createServer(function (socket) {
  // a remote socket ...
})

s.listen(hash(Buffer.from('a topic to announce on')))

Or a client connection

const s = l.connect(hash(Buffer.from('a topic to connect on')))

CLI

If you just want to spin up a tunneling server you can run the following cli

npm install -g @dswarm/tunnel
@dswarm/tunnel-server --port 10000

License

MIT

About

dWeb-based tunneling service.

https://dwebx.org

License:MIT License


Languages

Language:JavaScript 100.0%