Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chadtech/bitcoin-transaction-counter
https://github.com/chadtech/bitcoin-transaction-counter
bitcoin elm websocket
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/chadtech/bitcoin-transaction-counter
- Owner: Chadtech
- Created: 2017-03-28T18:29:03.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-28T18:30:49.000Z (almost 8 years ago)
- Last Synced: 2024-11-06T04:41:02.321Z (3 months ago)
- Topics: bitcoin, elm, websocket
- Language: Elm
- Homepage: http://bitcoin-transaction-counter.surge.sh/
- Size: 30.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# HI THERE
This is my
# Bitcoin Transaction Counter
[Check out the live version of this project](http://bitcoin-transaction-counter.surge.sh/).
To get this going on your computer, download or clone the repo, and then type into your console..
```
> npm install
> elm package install --yes
> gulpthen open up http://localhost:2982
```This repo is organized as ..
```
development/ -- Your development app
index.html
source/ -- Source files
app.js -- Loads your elm file
Main.elm
*.elm
Main/ -- Primary Elm Files
View.elm -- Top level view file
Update.elm -- Top level update function
WebSocket.elm -- Handles websockets
*.elm
Styles/
Main.styl -- Main style file
*.styl -- Many other style files that get concatentated together
Types/ -- Primary types, and basic functions re those types
Model.elm
Message.elm
*.elm
Util/
*.elm -- Gritty computation heavy processes
View/
*.elm -- Basic view components
gulpFile.js
server.js## Elm Format
There is an [Elm-Format](https://github.com/avh4/elm-format) task in this gulp file. Its not on by default, but you can switch to it by uncommenting a little code.