Skip to content

VarunS2002/TypeScript-Cryptocurrency

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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