The QR Code Generator is a Node.js command-line tool that converts a user-provided URL into a QR code image, simplifying the process of generating scannable QR codes for URLs.
Before using the QR Code Generator, ensure that you have Node.js installed on your system.
- Clone or download this repository to your local machine.
git clone https://github.com/VishalOjhaa/qr-code-generator-nodejs.git
- Navigate to the project directory.
cd qr-code-generator-nodejs
- Install project dependencies.
npm install
-
Run the generator from the command line.
node index.js
-
Follow the prompts to input the URL you want to convert into a QR code.
-
The resulting QR code image will be saved as "your-qr.png" in the project directory.
This project relies on the following dependencies:
- inquirer: For user input prompts.
- qr-image: For QR code generation.
Enjoy generating QR codes with this tool!
Vishal Ojha