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

@weapp-vite/qr

v1.1.0

Published

weapp-vite 生态二维码编码、解码与终端渲染工具包

Readme

@weapp-vite/qr

@weapp-vite/qr 提供二维码矩阵编码、图片解码、reader 适配、微信小程序码结构识别与终端文本渲染能力。

import { decodeQrCodeFromBase64, renderTerminalQrCode } from '@weapp-vite/qr'

const content = await decodeQrCodeFromBase64(base64Png)
process.stdout.write(renderTerminalQrCode(content, { small: true }))

API

编码

import { createQrCodeMatrix } from '@weapp-vite/qr'

const matrix = createQrCodeMatrix('https://vite.icebreaker.top/')

解码

import {
  decodeQrCodeFromBase64,
  decodeQrCodeFromBuffer,
  decodeQrCodeFromFile,
} from '@weapp-vite/qr'

const fromBase64 = await decodeQrCodeFromBase64(base64Png)
const fromBuffer = await decodeQrCodeFromBuffer(imageBuffer)
const fromFile = await decodeQrCodeFromFile('./fixtures/qr.png')

Reader 输入

import { decodeWithQrReader } from '@weapp-vite/qr'
import sharp from 'sharp'

const { data, info } = await sharp(imageBuffer)
  .ensureAlpha()
  .raw()
  .toBuffer({ resolveWithObject: true })

const result = await decodeWithQrReader({
  width: info.width,
  height: info.height,
  data,
})

console.log(result.result)

小程序码结构识别

import { detectMiniProgramCodeFromFile } from '@weapp-vite/qr'

const detected = await detectMiniProgramCodeFromFile('./fixtures/mini-program-code.jpg')

if (detected) {
  console.log(detected.kind)
  console.log(detected.locatorPoints)
  console.log(detected.badgeBounds)
  console.log(detected.logoBounds)
}

这里的结构识别目标是判断图片是否符合微信小程序码几何特征,并返回定位点、中心 logo 区和右下角徽标区域。 它不是把小程序码直接解码成链接或页面路径。

高层类型检测

import { detectCodeTypeFromFile } from '@weapp-vite/qr'

const codeType = await detectCodeTypeFromFile('./fixtures/code.png')

if (codeType === 'qr') {
  console.log('standard qr')
}
else if (codeType === 'mini-program-code') {
  console.log('wechat mini program code')
}
else {
  console.log('unknown')
}

终端渲染

import {
  createQrCodeMatrix,
  renderTerminalQrCode,
  renderTerminalQrCodeFromMatrix,
} from '@weapp-vite/qr'

const compact = renderTerminalQrCode('weapp-vite', { small: true })

const matrix = createQrCodeMatrix('weapp-vite')
const rendered = renderTerminalQrCodeFromMatrix(matrix)

导出类型

import type {
  MiniProgramCodeDetectionResult,
  QRCodeMatrix,
  QRCodeReaderInput,
  QRCodeReaderResult,
  QRCodeRenderOptions,
  QRCodeType,
} from '@weapp-vite/qr'