
Security News
NIST Under Federal Audit for NVD Processing Backlog and Delays
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Fast and easy QR code generator (Angular v2+).
An Angular (v2+) Component wrapper for: https://www.npmjs.com/package/qrcode Create QR Codes easily and dynamic.
npm i ng-qrgen
Add NgQrgenModule to your angular module.
<ng-qrgen [value]="'StringValue'" [options]="options"></ng-qrgen>
The options interface can be found at
import { QrGenOptions } from 'ng-qrgen';
Which looks like:
{
version: number;
type: GenerationType;
imageType?: ImageType;
errorCorrectionLevel?: ErrorCorrectionlevel;
margin?: number;
scale?: number;
width: number;
maskPattern?: number;
color?: {
dark: string,
light: string,
};
}
version
: The QR code version (1-40), higher means more black squares.type
: Image, Canvas, or Svg.imageType
: If you chose Image at type
, determine which image type to use: Png, Jpeg, or Webp.errorCorrectionLevel
: The level of error correction: Low, Medium, Quartive, High. (See: https://www.npmjs.com/package/qrcode#error-correction-level).margin
: White space around the edges.scale
: Scale factor. A value of 1 means 1px per modules (black dots).width
: Size of the QR code.maskPattern
: Mask pattern used to mask the symbol.color
: The dark and light colors. Use Hex-codes.import { NgQrGen } from 'ngqrgen';
Usage:
NgQrGen.generateEncodedDataUrl(value: string, options: QrGenOptions)
: Generates an base-64 encoded data url string as QR code source. Can be used in the src
property of an image.NgQrGen.generateString(value: string, options: QrGenOptions)
: Generates an svg element as string.FAQs
Fast and easy QR code generator (Angular v2+).
The npm package ng-qrgen receives a total of 1 weekly downloads. As such, ng-qrgen popularity was classified as not popular.
We found that ng-qrgen 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
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.
Security News
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.