# simple-qr-node

> Simple QR Node is a simple and lightweight server-side QR code generation library that uses JavaScript. It provides flexible configurations, including logo, color.

Latest version **1.0.13** (published 2024-01-17) · 0 weekly downloads

## Install

```sh
npm install simple-qr-node
pnpm add simple-qr-node
yarn add simple-qr-node
bun add simple-qr-node
```

## 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.13 |
| Published | 2024-01-17 |
| First published | 2023-11-30 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 2.4 KB |
| Known vulnerabilities | 0 (+2 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Anthony CONSOLARO |
| Maintainers | anthonyconsolarox |
| Keywords | qr, qrcode, qrcodejs, easyqrcode, javascript, generatorqrcode, server, serverside, lightweight |

## Links

- npm: https://www.npmjs.com/package/simple-qr-node
- Repository: https://github.com/0xAnthony/simple-qr-node
- Homepage: https://github.com/0xAnthony/simple-qr-node#readme
- Issues: https://github.com/0xAnthony/simple-qr-node/issues
- npm.io page: https://npm.io/package/simple-qr-node

## Dependencies (2)

- [sharp](https://npm.io/package/sharp.md) ^0.33.0
- [qrcode](https://npm.io/package/qrcode.md) ^1.5.3

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 1.0.13 (latest) — 2024-01-17
- 1.0.12 — 2024-01-17
- 1.0.11 — 2024-01-17
- 1.0.10 — 2023-11-30
- 1.0.9 — 2023-11-30
- 1.0.8 — 2023-11-30
- 1.0.7 — 2023-11-30
- 1.0.6 — 2023-11-30
- 1.0.5 — 2023-11-30
- 1.0.4 — 2023-11-30
- 1.0.3 — 2023-11-30
- 1.0.2 — 2023-11-30
- 1.0.1 — 2023-11-30
- 1.0.0 — 2023-11-30

## README

# Simple QR Node

Simple QR Node is a simple and lightweight server-side QR code generation library that uses JavaScript. It provides flexible configurations, including logo, color.

## Installation
```
npm install simple-qr-node
```

## Load
```javascript
 const QRCode = require('simple-qr-node');
```

## Usage
```javascript
 await generateQR({
    text: 'www.google.com',
    color: '#000000',
    background: '#ffffff',
});
```

### Options
| Option     | Required | Type   | Default | Infos                                                     |
|------------|----------|--------|---------|-----------------------------------------------------------|
| text       | Yes      | String | ---     | The value encoded in the QR code                          |
| color      | No       | String | #000000 | The color of the dots                                     |
| background | No       | String | #ffffff | The background color                                      |

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