These are the source files for my article on HackerNoon: How to penetrate into the Blockchain space as a developer without having a concrete project.
Link to my article: https://hackernoon.com/how-to-penetrate-into-the-blockchain-space-as-a-developer-without-having-a-concrete-project-16f7a753082
Tiniest Crypto Currency on a Blockchain (Powered by NodeJS and VueJS)
Backend is served from http://localhost:3000
To install backend:
cd tiny-coin
npm install
To run blockchain:
node app.js
Sample commands to create transactions:
localhost:3000/new?sender=shankar&recipient=jack&amount=7
localhost:3000/new?sender=jack&recipient=shankar&amount=5
localhost:3000/new?sender=network&recipient=jack&amount=100
Sample commands to check transaction history:
localhost:3000/history?address=shankar
localhost:3000/history?address=jack
Sample commands to check balances:
localhost:3000/balance?address=shankar
localhost:3000/balance?address=jack
Frontend is served from http://localhost:8080
To install frontend:
cd vue-frontend
npm install
To run frontend:
npm run serve
Usage examples:
- Login with account name "shankar", there are some dummy transactions.
- Make a Transfer to "jack"
- Logout, then login with account name "jack"
Backend image:
docker pull shankqr/tiny-coin
docker run -p 3000:3000 -d shankqr/tiny-coin
Frontend image:
docker pull shankqr/tiny-coin-frontend
docker run -p 8080:8080 -d shankqr/tiny-coin-frontend
docker-compose up