Skip to content

Latest commit

 

History

History
53 lines (27 loc) · 1.25 KB

README.md

File metadata and controls

53 lines (27 loc) · 1.25 KB

TypeScript-Cryptocurrency

License: GPL v3

Basic cryptocurrency implementation in typescript.

This project is heavily based on the guide written by Ankan Bag which was posted here.

Requirements:

Usage:

Installing required packages

  1. Clone this repository

  2. Open a terminal window

  3. Set current working directory to TypeScript-Cryptocurrency

  4. Run npm install

Running the application

  1. Open a terminal window

  2. Set current working directory to TypeScript-Cryptocurrency

  3. Run npm run start or ts-node index.ts

Compiling to JavaScript

  1. Open tsconfig.json

  2. Set noEmit to false

  3. To generate a source map, set sourceMap to true

  4. Open a terminal window

  5. Set current working directory to TypeScript-Cryptocurrency

  6. Run npm run build or tsc

Running the compiled application

  1. Open a terminal window

  2. Set current working directory to TypeScript-Cryptocurrency

  3. Run node index.js