mirror of
https://github.com/cerc-io/watcher-ts
synced 2026-02-15 04:44:08 +00:00
* Improve connection check with peers by retrying ping on failures * Use DEFAULT_PING_INTERVAL in cli * Log only error message * Add config option to pass peer id file path * Finish retrying pings before connection check interval duration * Handle duplicate connections to relay nodes * Increase default max dial retries from one relay to another * Update connection manager config for relay nodes * Use debug for logs in relay node --------- Co-authored-by: prathamesh0 <prathamesh.musale0@gmail.com> |
||
|---|---|---|
| .. | ||
| src | ||
| .eslintignore | ||
| .eslintrc.json | ||
| .npmignore | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
cli
chat
A basic CLI to pass messages between peers using stdin/stdout
-
Install dependencies:
yarn install -
Build the
peerpackage:cd packages/peer yarn build -
(Optional) Create and export a peer id for the relay node:
# In packages/peer yarn create-peer --file [PEER_ID_FILE_PATH]file (f): file path to export the peer id to (json) (default: logs to console)
-
(Optional) Run a local relay node:
# In packages/peer yarn relay-node --host [LISTEN_HOST] --port [LISTEN_PORT] --announce [ANNOUNCE_DOMAIN] --peer-id-file [PEER_ID_FILE_PATH] --relay-peers [RELAY_PEERS_FILE_PATH]host (h): host to bind to (default:127.0.0.1)port (p): port to start listening on (default:9090)announce (a): domain name to be used in the announce addresspeer-id-file (f): file path for peer id to be used (json)relay-peers (r): file path for relay peer multiaddr(s) to dial on startup (json)
-
Start the node:
# In packages/cli yarn chat --relay-node <RELAY_NODE_URL>relay-node: multiaddr of a primary hop enabled relay node
-
The process starts reading from
stdinand outputs messages from others peers tostdout.