Before you begin, ensure you have installed the latest versions of:
- Node.js - Download Node.js LTS Version
- Git - Download Git
- Visual Studio Code - Download VSCode
- Make sure to install the following extensions:
-
GIT (Version Control)
-
HTML
-
TYPESCRIPT
- TypeScript in 100 seconds
- You do NOT need to "learn" TypeScript, it is literally just JavaScript but strongly-typed. TypeScript simply prevents you from doing something like:
Here's what the code would look like in TypeScript:let text = "Hello, world!"; text = 0; // This is valid JavaScript
let text: string = "Hello, world!"; text = 0; // Syntax error in TypeScript!
- TypeScript in 100 seconds
-
REACT
- I'm only presuming @Abdul knows some React. The tasks I am giving the rest of you DO NOT require React knowledge, only HTML, CSS, and JavaScript (at least during the beginning of the project). However, you should still watch the following video to get a general idea of what's going on:
To get a local copy up and running, follow these simple steps.
First, clone the repository to your local machine:
git clone https://github.com/AliBdeir/code-conductor.gitChange to the project directory:
cd code-conductorInstall the necessary packages:
npm installFinally, start the Vite server:
npm run devThe application should now be running on http://localhost:3000. You can type "o" into the command line and it should open it in your default browser or you can just enter the url into your browser manually.
This project is licensed under the MIT License.

