Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 1.16 KB

README.md

File metadata and controls

63 lines (41 loc) · 1.16 KB

blockchain-core JavaScript implementation

This repository includes implementation of a simple blockchain for it's core features (transaction, blocks, miners etc.)

Getting Started

Prerequisites

  • Node.js v10.15.3 or higher
  • npm v6.4.1 or higher

Installing

Clone the repository

git clone https://github.com/Zigurat-blockchain-masters/blockchain-core.git

Install dependencies

npm install

or using yarn

yarn install

Running the tests

To run the tests, run the following command (it will automatically run all the tests under the test directory)

npm run test

Generate code coverage report

To generate code coverage report, run the following command

npm run test:coverage

or using yarn

yarn test:coverage

Built With