A simple yet powerful command-line QR code generator built with Node.js.
- Generate QR codes from any text or URL
- Output as PNG image files
- Simple command-line interface
- Fast and lightweight
- Fully open-source
To use this QR Code Generator, ensure you have Node.js installed.
Clone the repository and install dependencies:
git clone https://github.com/Pr1ncePandey/Qr-Code-Generator.git
cd Qr-Code-Generator
npm installYou can generate QR codes directly from the command line.
node index.js "Your text goes here"node index.js "https://example.com"By default, the generated QR code will be saved as qrcode.png in the project directory. You can specify a custom output file:
node index.js "Hello World" output.pngnode index.js "https://github.com"This will create a PNG file named qrcode.png with the QR code for the specified URL.
- qrcode — QR code generation library for Node.js
Contributions are welcome! Please open issues or submit pull requests for improvements and bug fixes.
This project is licensed under the MIT License.
Developed by Pr1ncePandey