Gathering detailed insights and metrics for @wishknish/qrcode.vue
Gathering detailed insights and metrics for @wishknish/qrcode.vue
Gathering detailed insights and metrics for @wishknish/qrcode.vue
Gathering detailed insights and metrics for @wishknish/qrcode.vue
npm install @wishknish/qrcode.vue
Typescript
Module System
Node Version
NPM Version
53.8
Supply Chain
98.5
Quality
75
Maintenance
50
Vulnerability
99.6
License
JavaScript (100%)
Total Downloads
1,101
Last Day
1
Last Week
2
Last Month
22
Last Year
282
101 Commits
1 Watching
1 Branches
Latest Version
1.7.1
Package Id
@wishknish/qrcode.vue@1.7.1
Unpacked Size
103.71 kB
Size
26.98 kB
File Count
14
NPM Version
6.14.4
Node Version
12.16.3
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
0%
2
Compared to previous week
Last month
46.7%
22
Compared to previous month
Last year
-26.8%
282
Compared to previous year
1
24
A Vue.js component to generate QRCode.
the qrcode.vue
component can use in you Vue.js app.
1npm install --save qrcode.vue # yarn add qrcode.vue
e.g.
1import Vue from 'vue' 2import QrcodeVue from 'qrcode.vue' 3 4new Vue({ 5 el: '#root', 6 data: { 7 value: 'https://example.com', 8 }, 9 template: '<qrcode-vue :value="value"></qrcode-vue>', 10 components: { 11 QrcodeVue, 12 }, 13})
Or single-file components with a *.vue
extension:
1<template> 2 <div> 3 <qrcode-vue :value="value" :size="size" level="H"></qrcode-vue> 4 </div> 5</template> 6<script> 7 import QrcodeVue from 'qrcode.vue' 8 9 export default { 10 data() { 11 return { 12 value: 'https://example.com', 13 size: 300, 14 } 15 }, 16 components: { 17 QrcodeVue, 18 }, 19 } 20</script>
string
''
The value content of qrcode
string
L
qrcode Error correction level (one of 'L', 'M', 'Q', 'H'). Know more, wikipedia: QR_code
number
100
The size of qrcode element.
string
canvas
Generate QRcode as canvas
or svg
.
string
#ffffff
The background color of qrcode.
string
#000000
The foreground color of qrcode.
string
''
The class name of qrcode element.
copyright © 2017 @scopewu, license by MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
77 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-12-16
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More