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

@light0x00/qichacha-tool

v1.1.6

Published

基于 selenium 的自动操作工具, 可代替人工收集企查查上的企业数据, 输入一个含有若干公司名称的 Excel , 输出一个包含这些公司信息的Excel. (目前只收集了企业信用代码,但是只需稍加更改代码,即可收集其他信息)

Readme

企查查数据收集工具

基于 selenium 的自动操作工具, 可代替人工收集企查查上的企业数据, 输入一个含有若干公司名称的 Excel , 输出一个包含这些公司信息的Excel. (目前只收集了企业信用代码,但是只需稍加更改代码,即可收集其他信息)

npm i @light0x00/qichacha-tool -g

示例

[示例1] 指定一个要处理的excel文件:

qcc --inputExcel "C:\\我的查询excel文件.xlsx" 

[示例2] 指定一个excel文件,从第二行开始处理:

qcc --inputExcel "C:\\我的查询excel文件.xlsx" --startRow 2

[示例3] 指定一个excel文件,从第二行开始处理,每行取第二列的值作为「公司名称」:

qcc --inputExcel "C:\\我的查询excel文件.xlsx" --startRow 2 --companyNameColumn=2

[示例4] 指定一个excel文件,从第二行开始处理,每间隔5秒钟处理一条数据:

qcc --inputExcel "C:\\我的查询excel文件.xlsx" --startRow 2 --minInterval=5000

参数

~|~ --|-- -i,--inputExcel | 指定输入的Excel文件路径 -o,--outputPath | 指定输出的Excel文件目录 -s,--startRow | 起始行(默认从第二行开始处理) -e,--endRow | 结束行(默认处理到最后一行) --companyNameColumn | 公司名称位于输入Excel的第几列(默认第二列) --outputExcel | 指定已经存在Excel文件,将结果写入其中 --minInterval | 指定查询频率,如果太频繁,会触发企查查人工验证 --cookie | 设置登录cookie

快捷键:

Ctrl + C , 优雅退出程序,将等待最后一次查询完成后退出, 将输出本次断点(处理到第几行), 以便下次基于断点继续执行