A simple blockchain creating application written in TypeScript.
Creating blockchain is not easy, it contains data that needs to be crypted, and sometimes, a multiple of data in different data type need to be serialized.
This is where TypeScript can play a pivotal role here, it will help developers from errors and bugs arise from data-type checks, argument numbers, return data type... it even tell developers what data should be there right after the flashing cursor on their screen!
- JavaScript
- TypeScript
- NodeJS
Clone this project to your terminal/CLI
git clone git@github.com:jpark-dev/ts-blockchain.git <folder-name>
Install modules
npm install --save-dev
Run!!
npm run dev
This app will create blockchains and print them out in your terminal. You can play around as much as you want, by editing values and numbers.
- Use class component to create a blockchain (20/Oct/2022)
- Study blockcoins in depth
- Create frontend app
- Add information/description of blockchain
- Let user to create his/her own blockchain