![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
qr-code-generator-lib
Advanced tools
A tiny QR Code generator that fits in a QR Code (< 2950 bytes gzipped) *. The default renderer also generates a very small SVG :)
* It does not support dedicated (alpha)numeric and kanji modes, only utf8/byte mode of the standard i.e. the generated code will be slightly larger in cases where those character sets are used exclusively.
$ npm install qr-code-generator-lib
import { getMatrix, render, renderPath } from 'qr-code-generator-lib'
getMatrix
generates a 2D array from the input with dark (true) and light (false) modules.render
renders an SVG string from the 2D array. The optional 2nd parameter sets the color of the modules.someElement.innerHTML = render(getMatrix('Hello World!'), '#000')
renderPath
is intended for reactive frameworks and returns the d-attribute of the path together with the SVG view box dimensions.const {d, dim} = renderPath(getMatrix('Hello World!'))
//...
<svg xmlns="http://www.w3.org/2000/svg" viewBox={`0 0 ${dim} ${dim}`} stroke="#000" stroke-width="1.05">
<path d={d}/>
</svg>
FAQs
A tiny <3 KB QR code generation library
The npm package qr-code-generator-lib receives a total of 501 weekly downloads. As such, qr-code-generator-lib popularity was classified as not popular.
We found that qr-code-generator-lib 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.