{"id":22088066,"url":"https://github.com/alkaison/qrcode-generator","last_synced_at":"2025-03-23T22:41:01.371Z","repository":{"id":236688185,"uuid":"657257091","full_name":"Alkaison/QRCode-Generator","owner":"Alkaison","description":"A convenient tool that generates QR codes, enabling users to encode various types of information such as URLs, text, contact information, or Wi-Fi credentials into scannable codes for easy sharing and quick access with download option.","archived":false,"fork":false,"pushed_at":"2023-06-24T16:00:48.000Z","size":81,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-29T05:46:04.787Z","etag":null,"topics":["html-css-javascript","projects","qr-generator","qrcode","qrcode-generator"],"latest_commit_sha":null,"homepage":"https://alkaison.github.io/QRCode-Generator/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Alkaison.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-22T16:54:46.000Z","updated_at":"2023-12-20T15:25:39.000Z","dependencies_parsed_at":"2024-04-28T07:25:39.964Z","dependency_job_id":"6fef1cc0-6d7f-4628-af9a-c448260f7b72","html_url":"https://github.com/Alkaison/QRCode-Generator","commit_stats":null,"previous_names":["alkaison/qrcode-generator"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alkaison%2FQRCode-Generator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alkaison%2FQRCode-Generator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alkaison%2FQRCode-Generator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alkaison%2FQRCode-Generator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Alkaison","download_url":"https://codeload.github.com/Alkaison/QRCode-Generator/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245181508,"owners_count":20573717,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["html-css-javascript","projects","qr-generator","qrcode","qrcode-generator"],"created_at":"2024-12-01T02:07:28.130Z","updated_at":"2025-03-23T22:41:01.340Z","avatar_url":"https://github.com/Alkaison.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# QR Code Generator\n\nA QR code generator built using HTML, CSS, and JavaScript, along with the qrcodejs library. It allows users to generate QR codes of different sizes (128x128, 256x256, and 512x512) by encoding various types of information such as URLs, text, contact information, or Wi-Fi credentials into scannable codes. The generated QR codes can be easily downloaded for sharing and quick access. Checkout here: https://alkaison.github.io/QRCode-Generator/ \n\n## Features\n\n- Generates QR codes for URLs, text, contact information, or Wi-Fi credentials.\n- Supports QR code sizes of 128x128, 256x256, and 512x512.\n- Provides a convenient download option for saving generated QR codes.\n- Lightweight and easy to use.\n- Supports customization through HTML, CSS, and JavaScript.\n\n## Usage\n\nTo use the QR code generator in your own project, follow these steps:\n\n1. Clone the repository or download the source code.\n2. Include this script in your `index.html` file to include the QR Code library:\n\n```html\n\u003cscript src=\"https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.js\" integrity=\"sha512-is1ls2rgwpFZyixqKFEExPHVUUL+pPkBEPw47s/6NDQ4n1m6T/ySeDW3p54jp45z2EJ0RSOgilqee1WhtelXfA==\" crossorigin=\"anonymous\" referrerpolicy=\"no-referrer\"\u003e\u003c/script\u003e\n```\n\n3. Create an HTML container element where the QR code will be displayed:\n\n```html\n\u003cdiv id=\"qrcode\"\u003e\u003c/div\u003e\n```\n\n4. Initialize the QR code generator by calling the `generateQRCode` function with the desired options:\n\n```javascript\nconst qrCodeImg = document.querySelector(\"#qrcode\");\n\nlet qrCode = new QRCode(qrCodeImg, {\n\ttext: \"https://github.com/Alkaison\",\n\twidth: 256,\n\theight: 256,\n\tcolorDark : \"#FFFFFF\",\n\tcolorLight : \"#023e7d\",\n\tcorrectLevel : QRCode.CorrectLevel.H\n});\n```\n\n## Contributing\n\nContributions to the QR code generator are welcome! If you would like to contribute, please follow these steps:\n\n1. Fork the repository.\n2. Create a new branch for your feature or bug fix.\n3. Make your changes and test thoroughly.\n4. Commit your changes with clear and descriptive commit messages.\n5. Push your branch to your forked repository.\n6. Submit a pull request with a detailed explanation of your changes.\n\nPlease ensure that your code adheres to the existing coding style and includes appropriate documentation.\n\n## License\n\nThis project is licensed under the [MIT License](./LICENSE). Feel free to use, modify, and distribute the code as per the terms of the license.\n\n## Credits\n\nThe QR code generator utilizes the [qrcode.js](https://github.com/davidshimjs/qrcodejs) library by David Shim.\n\n## Feedback and Support\n\nIf you have any questions, suggestions, or issues regarding the QR code generator, please open an issue on the repository. We appreciate your feedback and will do our best to assist you.\n\nHappy QR code generating!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falkaison%2Fqrcode-generator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falkaison%2Fqrcode-generator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falkaison%2Fqrcode-generator/lists"}