It's a CLI game designed to test if you are a fan of Thala (Ms. Dhoni). You need to input a word or number. If the inputted value has a relation with the number 7, you win. Otherwise, you lose.
use the Thala7 CLI tool directly without installing it, you can use the following command:
npx thala7
This will execute the Thala7 CLI tool from the npm registry without needing a global or local installation.
npm install -g thala7
and can run it by
thala
If you wish to use the Thala7 tool from this repository locally in your project, follow these steps:
-
Clone the Repository:
git clone https://github.com/your-username/thala7.git
-
Navigate to the Repository Directory:
cd thala7
-
Install Dependencies: Use npm to install all the required dependencies:
npm install
Once you've followed these steps, you can use the Thala7 tool locally in your project using:
node .
To run the script.
Then Navigate the root directory of the cloned repo and then run
npm install -g
The -g
falg tells npm to install the package Globally on the system
thala
This will add the Thala7 tool as a dependency in your project, and you can then use it accordingly.