This Node.js application generates QR codes from a list of URLs and saves them as PNG files.
- Make sure you have Node.js installed on your system. If not, you can download it from here.
- Clone this repository to your local machine or download the source code as a ZIP file.
- Navigate to the project directory in your terminal.
Certainly! Here's a basic README.md
file to explain how to install and use the application:
- Install the dependencies using npm:
npm install
- Create the
urls.js
file in the root directory to include the list of URLs for which you want to generate QR codes. Each URL should be added as a separate item in the array. - Run the application using the following command:
node app.js
- Once the application finishes execution, you will find the generated QR code images in the
output
directory within the project folder.
Here is an example urls.js
file:
module.exports = [
'https://example.com',
'https://google.com',
'https://github.com'
];
After running the application, you will see QR code images for each URL in the output
directory.
This project is licensed under the MIT License.