Simple server which manage all started mining nodes Collecting all started nodes and sending list of currenctly active nodes to everyone Also listen notifications from nodes and notify others if someone added new block to chain
PS. No test coverage. No API documantation. Just as is:)
Node >= 8.11.2
export DEBUG=jscoin* # debug information in console
export PORT=8080 # application server port
- Clone or download this repository
git clone
- Enter your local directory, and install dependencies:
npm i
# run server in development mode
npm run dev
# build documentation
npm run doc
# run linter
npm run lint
# run tests
npm test
- For start application inside docker container use command
docker run -d --name=jscoin-miner-pool \
-p 8285:8080 \
-e DEBUG="jscoin*" \
--restart=always dpanchenko/jscoinminerpool:latest