This project is part of the Cryptology course. It includes RSA cipher implemented in TypeScript.
To start the TypeScript file, follow these steps:
-
Install Node.js and npm: Ensure you have Node.js and npm installed on your machine. You can download them from Node.js official website.
-
Clone the Repository: Clone the project repository to your local machine using the following command:
git clone https://github.com/WilloS88/crypto-task4.git- Install Dependencies: Install the required dependencies using npm:
npm install- Compile TypeScript Files: Compile the TypeScript files to JavaScript:
npx tsc --outDir dist- Run the Project: Execute the compiled JavaScript file:
node dist/app.js- Run Live Server: Download Live Server Extension. Start it by clicking on "Go Live" in bottom right corner.
src/: Contains the TypeScript source files.dist/: Contains the compiled JavaScript files.package.json: Lists the project dependencies and scripts.tsconfig.json: TypeScript configuration file.
- TypeScript
- Node.js