ethstats-server/README.md

58 lines
1.5 KiB
Markdown
Raw Normal View History

2018-12-03 14:16:26 +01:00
Ethereum Network Stats with POA support
2015-02-25 22:28:20 +01:00
============
[![Build Status][travis-image]][travis-url] [![dependency status][dep-image]][dep-url]
2015-02-04 11:37:56 +01:00
2018-12-03 14:16:26 +01:00
This is a visual interface for tracking proof-of-work and proof-of-authority network status. It uses WebSockets to receive stats from running nodes and output them through an angular interface. It is the front-end implementation for [netstats-client](https://github.com/goerli/netstats-client).
## Proof-of-Authority
2015-02-26 19:33:57 +01:00
2018-12-03 20:44:27 +01:00
![Screenshot](src/images/screenshot-v0.1.0.png "Screenshot")
2018-12-03 14:16:26 +01:00
### Prerequisite
* node
* npm
2018-12-03 14:16:26 +01:00
### Installation
2015-02-26 20:06:51 +01:00
Make sure you have node.js and npm installed.
2015-02-04 11:37:56 +01:00
2015-02-26 20:06:51 +01:00
Clone the repository and install the dependencies
2015-02-04 11:37:56 +01:00
2015-04-06 06:26:44 +02:00
```bash
2018-12-01 01:19:45 +01:00
git clone https://github.com/goerli/netstats-server
cd netstats-server
2015-02-26 20:06:51 +01:00
npm install
2015-08-01 17:21:53 +02:00
sudo npm install -g grunt-cli
2015-02-04 11:37:56 +01:00
```
2018-12-03 14:16:26 +01:00
### Build
2018-12-01 01:19:45 +01:00
In order to build the static files you have to run grunt tasks which will generate dist directories containing the js and css files, fonts and images.
2015-07-27 15:37:42 +02:00
```bash
2018-12-03 14:16:26 +01:00
grunt poa
```
### Run
```bash
WS_SECRET="asdf" npm start
2015-07-27 15:37:42 +02:00
```
2018-12-03 14:16:26 +01:00
see the interface at http://localhost:3000
## Proof-of-Work
2015-07-27 15:37:42 +02:00
2018-12-03 20:44:27 +01:00
![Screenshot](src/images/screenshot-v0.0.6.png "Screenshot")
2018-12-03 14:16:26 +01:00
Same as above, just run the `pow` build task in Grunt.
2015-02-04 11:37:56 +01:00
2015-04-06 06:26:44 +02:00
```bash
2018-12-03 14:16:26 +01:00
grunt pow
2018-12-01 01:19:45 +01:00
WS_SECRET="asdf" npm start
2015-02-04 11:37:56 +01:00
```
2018-12-03 14:16:26 +01:00
2015-02-04 11:37:56 +01:00
see the interface at http://localhost:3000
2015-02-25 22:28:20 +01:00
2018-12-01 01:19:45 +01:00
[travis-image]: https://travis-ci.org/goerli/netstats-server.svg
[travis-url]: https://travis-ci.org/goerli/netstats-server
[dep-image]: https://david-dm.org/goerli/netstats-server.svg
[dep-url]: https://david-dm.org/goerli/netstats-server