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

web-print-for-chrome

v1.0.10

Published

**web-print-for-chrome**是一个基于vue2与element-ui的可复用组件,旨在简化chrome网页端的标签打印功能。通过渲染页面再转换为图片进行网页的打印,内置静默打印与多条码打印。

Readme

web-print-for-chrome

web-print-for-chrome是一个基于vue2与element-ui的可复用组件,旨在简化chrome网页端的标签打印功能。通过渲染页面再转换为图片进行网页的打印,内置静默打印与多条码打印。

注意点

❗️需要引入element-ui组件,且需要在mian.js中注册使用:

// main.js
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';

Vue.use(ElementUI);

❗️首次配置好打印机以及打印机模板后,后续打印默认选择首次的配置,需要在非静默打印模式下配置;

功能特性

  • 功能1:可以调整纸张大小,针对不同的标签纸进行打印;
  • 功能2:可以实时渲染条码与二维码;
  • 功能3:可以将渲染的模板进行保存和导入(json格式,可以单独复制粘贴或使用文件);
  • 功能4:多条码打印仅需传入json即可,所有参数均可根据模板自行组装;
  • 功能5:静默打印需要浏览器单独配置(注意空格):
 --kiosk-printing

chromeSetting.png

页面展示

  • 总体页面mainPage.png
  • 纸张设置pageSetting.png
  • 文本编辑textLabel.png
  • 条码编辑barcodeLabel.png
  • 二维码编辑QRCodeLabel.png
  • 保存模板saveTemp.png
  • 导入模板importTemp.png

参数与方法

  • 模板:temps: []
// main.js
import {WebPrint} from "web-print-for-chrome/src";

Vue.component("WebPrint", WebPrint);
// 引用页面
<web-print ref="webPrint" :temps="[]" />
  • 批量打印:printPageMulti(),需要先传入temps参数
doMultiPrint() {
  this.$refs.webPrint.printPageMulti();
}