# qr-code-utils-1

> __QR-CODE-UTILS__ qr code utils is an qr code reader and generator

Latest version **1.0.2** (published 2023-10-27) · ISC license · 0 weekly downloads

## Install

```sh
npm install qr-code-utils-1
pnpm add qr-code-utils-1
yarn add qr-code-utils-1
bun add qr-code-utils-1
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2023-10-27 |
| First published | 2023-10-27 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 2.5 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| Author | ADONIS Jr. S . Sanchez |
| Maintainers | buckyy26 |

## Links

- npm: https://www.npmjs.com/package/qr-code-utils-1
- npm.io page: https://npm.io/package/qr-code-utils-1

## Dependencies (4)

- [fs](https://npm.io/package/fs.md) ^0.0.1-security
- [jsqr](https://npm.io/package/jsqr.md) ^1.4.0
- [canvas](https://npm.io/package/canvas.md) ^2.11.2
- [qrcode](https://npm.io/package/qrcode.md) ^1.5.3

## Recent versions

- 1.0.2 (latest) — 2023-10-27
- 1.0.1 — 2023-10-27
- 1.0.0 — 2023-10-27

## README

__QR-CODE-UTILS__
qr code utils is an qr code reader and generator

__Installation__
```bash
npm install qr-code-utils
```
__Usage__
# Qr code Generator
```js
const { readQRCode,  generateQRCode } = require('qr-code-utils-1');

generateQRCode('https://example.com', 'qrcode.png');//replate the https://example.com with  the data you want to place in the qr
//and replace the 'qrcode.png' the desired path you want
```

# Qr Code Reader
```js
const { readQRCode,  generateQRCode } = require('qr-code-utils-1');

readQRCode(`replace with the path|URL of the qr code`)
  .then((result) => {
    console.log('QR Code Data:', result);
  })
  .catch((error) => {
    console.error('Error:', error);
  });
```

---
_Source: https://npm.io/package/qr-code-utils-1 · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
