# qrcode-npm

> QRCode Generator for JavaScript

Latest version **0.0.3** (published 2012-07-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install qrcode-npm
pnpm add qrcode-npm
yarn add qrcode-npm
bun add qrcode-npm
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2012-07-19 |
| First published | 2012-07-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 30 |
| Author | Carlos Manzanares |
| Maintainers | cmanzana |
| Keywords | qrcode |

## Links

- npm: https://www.npmjs.com/package/qrcode-npm
- Repository: git@github.com:cmanzana/qrcode-npm
- Homepage: https://github.com/cmanzana/qrcode-npm
- npm.io page: https://npm.io/package/qrcode-npm

## Alternatives

- [jsforce](https://npm.io/package/jsforce.md) — 851.2K weekly downloads
- [react-native-qrcode-svg](https://npm.io/package/react-native-qrcode-svg.md) — 693.5K weekly downloads
- [@salesforce/plugin-data](https://npm.io/package/@salesforce/plugin-data.md) — 394.9K weekly downloads
- [@backstage/plugin-search-common](https://npm.io/package/@backstage/plugin-search-common.md) — 308.5K weekly downloads
- [@chain-registry/types](https://npm.io/package/@chain-registry/types.md) — 38.4K weekly downloads

## Recent versions

- 0.0.3 (latest) — 2012-07-19
- 0.0.2 — 2012-07-16
- 0.0.1 — 2012-07-16

## README

qrcode-npm
==========

This is an npm module for qrcode JavaScript library (http://www.d-project.com/qrcode)

Notice that I am not the author of the code, I am just simply creating an npm module out of the great library from Kazuhiko Arase
Notice also that there is another module (node-qrcode, see: https://github.com/soldair/node-qrcode), which is more sophisticated and uses canvas object:
* qrcode-npm uses img or table tags, which is more friendly to older browsers
* if you know your target browser is canvas capable then I recommend using node-qrcode module

examples
--------

	var qrCode = require('qrcode')

	var qr = qrCode.qrcode(4, 'M');
	qr.addData(text);
	qr.make();

	qr.createImgTag(4);    // creates an <img> tag as text
	qr.createTableTag(4);  // creates a <table> tag as text

install
-------
	npm install qrcode-npm
	
The word "QR Code" is registered trademark of DENSO WAVE INCORPORATED

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