kafka icon indicating copy to clipboard operation
kafka copied to clipboard

Realtime BTC and ETH Wallet Tracker with Node.js and Kafka


Node.js Kafka Example

Realtime Bitcoin Wallet Tracker Example App with Node.js and Kafka

Features

  • Interact with Kafka through Node.js
  • Produce/consume events to/from topics
  • Use Kafka as a queue and as a publish/subscribe system
  • Kafka with Zookeeper and without Zookeeper using Redpanda
  • Make use of Kafka's partitioning ability

Tech Stack

Usage

Recommended OS: Linux

Requirements: Node.js, Docker, Docker Compose

Setup

  • npm install (Install NPM dependencies)
  • docker-compose -f docker-compose.yaml up --build (Start services)
  • Optionally set environment variables in .env:
    • BLOCKCYPHER_TOKEN (https://accounts.blockcypher.com/tokens)

Run

  • npx ts-node cli.ts <WALLET_ADDRESS> (Watch a BTC or ETH wallet)
    • npx ts-node cli.ts 34xp4vRoCGJym3xR7yCVPFHoCNxv4Twseo (Watch a BTC wallet)
    • npx ts-node cli.ts 0xBE0eB53F46cd790Cd13851d5EFf43D12404d33E8 (Watch an ETH wallet)

Monitoring

  • http://localhost:8080 (Redpanda Console)

Notes

  • Fetching the balance might stop working at some point, because Blockcypher limits the amount of requests one can send to their API

Cleanup

  • docker-compose -f docker-compose.yaml rm -s -f -v (Stop and remove Docker containers)

Example

  • npm install (Install NPM dependencies)
  • docker-compose -f example.docker-compose.yaml up --build (Start example)
  • docker-compose -f example.docker-compose.yaml rm -s -f -v (Clean example)

Codebase

  • example.ts (Minimal example of using Kafka with Node.js)
  • cli.ts (CLI application to read wallet data in realtime)
  • server.ts (WebSocket server that communicates with CLI and with Kafka)
  • balance.ts (Service, that crawls wallet balance on demand)
  • price.ts (Service, that writes realtime price events to Kafka)