Comments on: Build your first blockchain with nodeJS https://codingislove.com/simple-blockchain-javascript/ Thu, 25 May 2023 08:22:43 +0000 hourly 1 https://wordpress.org/?v=6.8.5 By: Herbert https://codingislove.com/simple-blockchain-javascript/#comment-178823 Thu, 25 May 2023 08:22:43 +0000 https://codingislove.com/?p=2301#comment-178823 Wow, this tutorial on building a blockchain with Node.js is fantastic! The step-by-step instructions and clear explanations made it easy for me to understand the core concepts of blockchain technology. Node.js’s simplicity and efficiency combined with the power of blockchain is a game-changer. I can’t wait to explore more possibilities and unleash the potential of decentralized applications. Thank you for this valuable resource!

]]>
By: Aesha Shah https://codingislove.com/simple-blockchain-javascript/#comment-176404 Fri, 05 May 2023 12:50:54 +0000 https://codingislove.com/?p=2301#comment-176404 Thanks for sharing such useful content

]]>
By: Andy Globe https://codingislove.com/simple-blockchain-javascript/#comment-174930 Mon, 24 Apr 2023 10:21:27 +0000 https://codingislove.com/?p=2301#comment-174930 Build a blockchain with Node.js using cryptography, proof of work, and transaction verification. Test & ensure security before deployment.

]]>
By: Akeo Blockchain Consultancy https://codingislove.com/simple-blockchain-javascript/#comment-98885 Wed, 30 Jun 2021 06:30:40 +0000 https://codingislove.com/?p=2301#comment-98885 Blockchain technology has become more than a buzzword. It is enabling the development of digital currencies that can stand tall against the fiat currency world we live in. We just need to explore the technology to its full potential and see what we can make out of it. Innovation is the key.

]]>
By: Aum Patel https://codingislove.com/simple-blockchain-javascript/#comment-94536 Tue, 15 Dec 2020 09:09:55 +0000 https://codingislove.com/?p=2301#comment-94536 i like this blog this is very help full for me 

]]>
By: chris https://codingislove.com/simple-blockchain-javascript/#comment-22788 Sat, 13 Oct 2018 02:34:05 +0000 https://codingislove.com/?p=2301#comment-22788 thanks for your article.do you have any other materials to study blockchain.some deep learning of it.

]]>
By: Prateek https://codingislove.com/simple-blockchain-javascript/#comment-16384 Thu, 30 Aug 2018 06:35:28 +0000 https://codingislove.com/?p=2301#comment-16384 In reply to Arjun Mahishi.

no it is not linked list , as for every merkel data in original blockchain it is different .

for more info check blockchain transactions and the height of the trees there is change in the number of front zero very time ..

starting was done with 00000 zero now it reached a height of 21 zeros .

]]>
By: Juliette https://codingislove.com/simple-blockchain-javascript/#comment-14803 Thu, 09 Aug 2018 02:00:42 +0000 https://codingislove.com/?p=2301#comment-14803 Thank you for this awesome tutorial Arjun!

I just wanted to mention (for anyone who is getting the Error: Cannot find module 'sha256' function) that NPM is not needed for the Crypto module because it is a native module that is available via Node.js. To include Crypto and to create the hash, all that is needed is this code:

‘use strict’;

const crypto = require(‘crypto’);

const secret = ‘abcdefg’;
const sha1 = crypto.createHmac(‘sha256’, secret)//create the hash
.update(‘I love cupcakes’)
.digest(‘hex’);
console.log(sha1);

Then in the constructor function that is within the Block class, instead of calling the getHash() function to create the hash simply append sha1 (hash) to the constructor like so:

this.hash = this.sha1;
…instead of this.hash = this.getHash();

This is what worked for me.

Thanks for helping me to gain a better understanding of what Blockchain is!

Cheers!

Juliette

]]>
By: Dev https://codingislove.com/simple-blockchain-javascript/#comment-13662 Tue, 31 Jul 2018 08:57:42 +0000 https://codingislove.com/?p=2301#comment-13662 It would be better if you put a working demo of the same.

]]>
By: Arjun Mahishi https://codingislove.com/simple-blockchain-javascript/#comment-10353 Fri, 29 Jun 2018 08:48:56 +0000 https://codingislove.com/?p=2301#comment-10353 In reply to Puvi.

Yes, you are right!
Sorry I forgot to mention

]]>