https://github.com/makevoid/btc_transactions_viz
Bitcoin Transaction Visualizer - Opal, React.rb, blockchain.info websockets api
https://github.com/makevoid/btc_transactions_viz
Last synced: 5 months ago
JSON representation
Bitcoin Transaction Visualizer - Opal, React.rb, blockchain.info websockets api
- Host: GitHub
- URL: https://github.com/makevoid/btc_transactions_viz
- Owner: makevoid
- Created: 2015-08-09T02:10:09.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-23T14:30:08.000Z (over 10 years ago)
- Last Synced: 2025-05-14T01:59:06.355Z (10 months ago)
- Language: JavaScript
- Homepage: http://btc-transactions-viz.mkvd.net
- Size: 418 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# BTC Transactions Viz (visualizer)
Visualizes the BTC transactions - current data from blockchain.info (websockets API) [ ws:// | wss:// ]
- next version will support bitcoind
---
# mkv Opal setup (no sprockets, using guard)
A very fast opal setup - includes opal browser - uses guard to automatically compile your .js.ruby files as you save them - has opal and opal-browser vendored already in js files.
Open the project in a webserver:
python SimpleHTTPServer 3000
then open a browser at:
#### Development
install the dependencies
bundle
launch guard:
guard
modify app.rb, save and refresh the browser
---
#### extra infos:
build a stdlib module
File.open("math.js", 'w') { |file| file.write(Opal::Builder.build('math')) }
all stdlib modules:
https://github.com/opal/opal/tree/master/stdlib
useful stdlib modules:
- nodejs (file, dir, kernel, io ...)
- js (instanceof, typeof, call ...)