
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
cordova-plugin-qrcodejs
Advanced tools
An Apache Cordova plugin for generating QR code as Base64 encoded URL string.
It's a pure JavaScript implementation that can run an just any platform.
All platforms are supported:
ionic plugin add https://github.com/MenelicSoftware/cordova-plugin-qrcodejs
or
cordova plugin add https://github.com/MenelicSoftware/cordova-plugin-qrcodejs
Then at the top of your Typescript code:
cordova.plugins.qrcodejs.encode('TEXT_TYPE', 'myemail@mydomain.me', (base64EncodedQRImage) => {
console.info('QRCodeJS response is ' + base64EncodedQRImage);
//TODO: use your base64EncodedQRImage
}, (err) => {
console.error('QRCodeJS error is ' + JSON.stringify(err));
});
Or with more options
let options = {
width: 256,
height: 256,
colorDark: "#000000",
colorLight: "#ffffff",
};
cordova.plugins.qrcodejs.encode('TEXT_TYPE', 'myemail@mydomain.me', (base64EncodedQRImage) => {
console.info('QRCodeJS response is ' + base64EncodedQRImage);
//TODO: use your base64EncodedQRImage
}, (err) => {
console.error('QRCodeJS error is ' + JSON.stringify(err));
}, options);
It is based on the great work done by the Blackberry team at https://github.com/blackberry/phonegap-plugin-barcodescanner/ wich is based on work done by https://github.com/jeromeetienne/jquery-qrcode
Apache-2
Copiright Menelic Limited.
FAQs
Cordova plugin for generating QR code
We found that cordova-plugin-qrcodejs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.