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

lin-qr

v1.0.0

Published

A lightweight command shortcut tool for terminals

Downloads

3

Readme

lin-qr

🧩 一个轻量级命令行快捷指令管理工具

📝 简介

lin-qr 是一个命令行工具,用于管理和执行常用的命令行快捷指令。它可以帮助你:

  • 保存常用的命令行指令
  • 快速执行保存的指令
  • 管理默认指令配置
  • 提高终端操作效率

🚀 安装

npm install -g lin-qr
# 或
pnpm add -g lin-qr

🔨 使用方法

1. 创建自定义指令

qr custom

按提示输入指令,格式为 别名:实际命令,例如:

  • o:explorer . (在当前目录打开资源管理器)
  • serve:npx serve (启动本地服务器) 输入 end 结束。

2. 查看所有指令

qr ls

3. 设置默认指令

qr default key:value

例如:qr default o:explorer .

4. 删除指令

删除单个指令:

qr rm <指令名>

删除所有指令:

qr clean

5. 执行指令

qr <指令名> [参数...]

例如:qr o 执行之前设置的 explorer . 命令

📂 配置文件

配置文件保存在用户目录下的 .lin_qr.json

  • Windows: C:\Users\<用户名>\.lin_qr.json
  • macOS/Linux: ~/.lin_qr.json

🔧 系统要求

  • Node.js >= 16
  • Windows/macOS/Linux

📄 许可证

MIT © lin

🤝 贡献

欢迎提交 Issue 和 Pull Request!

  1. Fork 本仓库
  2. 创建新分支: git checkout -b feature/xxx
  3. 提交改动: git commit -am 'feat: add xxx'
  4. 推送分支: git push origin feature/xxx
  5. 提交 Pull Request

📦 更新日志

1.0.0

  • 首次发布
  • 支持基础的指令管理功能
  • 支持默认指令配置