npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

qrrq-qr-generator

v1.0.1

Published

Free QR code generator with dynamic QR codes, real-time analytics, custom designs & link pages. Create URL, vCard, WiFi, PDF, and 15+ QR code types.

Readme

qrrq-qr-generator

Official Node.js client for QRRQ — Free QR Code Generator with real-time analytics, custom designs, and 15+ QR code types.

Installation

npm install qrrq-qr-generator

Quick Start

const QRRQClient = require('qrrq-qr-generator');

const qr = new QRRQClient('YOUR_API_KEY');

// Create a URL QR code
const result = await qr.create({
  type: 'url',
  title: 'My Website',
  data: { url: 'https://example.com' }
});

console.log(result);

Supported QR Code Types

| Type | Description | Data Fields | |---|---|---| | url | Website link | url | | pdf | Document sharing | file (base64) | | vcard | Digital business card | firstName, lastName, phone, email, company, website, address | | wifi | WiFi connection | ssid, password, encryption | | email | Pre-filled email | address, subject, body | | phone | Instant dial | number | | sms | Text message | number, message | | whatsapp | WhatsApp chat | number, message | | location | Google Maps pin | latitude, longitude, name | | event | Calendar event | title, startDate, endDate, location, description | | text | Plain text | text | | social | Social profiles | platforms (array) | | multiurl | Smart redirects | urls (array with rules) | | app | App Store links | ios, android | | crypto | Wallet address | currency, address, amount |

API Methods

Create a QR Code

const result = await qr.create({
  type: 'vcard',
  title: 'John Doe',
  data: {
    firstName: 'John',
    lastName: 'Doe',
    phone: '+1234567890',
    email: '[email protected]',
    company: 'Acme Inc'
  }
});

Create with Custom Design

const result = await qr.create({
  type: 'url',
  title: 'Branded QR',
  data: { url: 'https://example.com' },
  design: {
    foregroundColor: '#6366f1',
    backgroundColor: '#ffffff',
    pattern: 'dots',
    eyeShape: 'rounded'
  }
});

Create with Rules (Password, Expiry, Scan Limit)

const result = await qr.create({
  type: 'url',
  title: 'Limited Offer',
  data: { url: 'https://example.com/promo' },
  rules: {
    password: 'secret123',
    expires_at: '2026-12-31',
    scan_limit: 1000
  }
});

List All QR Codes

const list = await qr.list();

Get a QR Code

const item = await qr.get(123);

Update a QR Code

await qr.update(123, {
  title: 'Updated Title',
  data: { url: 'https://new-url.com' }
});

Delete a QR Code

await qr.delete(123);

Get Scan Analytics

const stats = await qr.analytics(123);
// Returns: total_scans, unique_scans, scans_by_country, scans_by_device, scans_by_date

Get Dashboard Overview

const overview = await qr.overview();

Error Handling

try {
  await qr.create({ type: 'url', title: 'Test', data: { url: 'https://example.com' } });
} catch (error) {
  console.error(error.message);  // Error description
  console.error(error.status);   // HTTP status code
  console.error(error.response); // Full API response
}

Get Your API Key

  1. Sign up free at free QR code generator
  2. Go to Dashboard → API section
  3. Generate your API key
  4. QR code API documentation →

Features

  • Dynamic QR Codes — Edit destination URL anytime without reprinting
  • Real-Time Analytics — Track scans by location, device, browser, and time
  • Custom Designs — Colors, logos, patterns, eye shapes, and frames
  • Password Protection — Secure QR codes with passwords
  • Link Pages — Micro landing pages with multiple links, social media, videos & more
  • 15+ QR Types — URL, PDF, vCard, WiFi, Email, Phone, SMS, WhatsApp, and more
  • Multi-Language — Available in English, Turkish, German, Spanish, and Russian

Links

License

MIT — Free QR Code Generator