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

trelease

v2.1.6

Published

终端自动发布器

Downloads

47

Readme

Trelease 2.1.X :seedling:

:octocat: 终端自动发布器, 一键推送多个仓库, 面向自动化, 解放双手 :muscle:

:star: 2.1.X 更新列表: :star:

(即将更新: 2.1.7)

  • [] 多语言拓展, 可自定义上传提示信息
  • [] 加入腾讯云 OSS 适配

(2.1.6)

  • [x] 优化:进度条过长的问题 :heavy_check_mark:
  • [x] 更新:上传成功后提示 :heavy_check_mark:

(2.1.5)

  • [x] 更新了亿个 BUG
  • [x] 优化文件结构, 重写部分逻辑
  • [x] ~~移除原有上传 loading 插件~~, 取而代之则是使用百分比进度条形式 :heavy_check_mark:
  • [x] 改写上传逻辑, 在多选部署时同一路径减少重复读取
  • [x] 加入自定义服务器, 完美兼容Trelease-Node :heavy_check_mark:
  • [x] 新增初始化时监听配置文件是否创建 :heavy_check_mark:
  • [x] 优化 log 转义 :heavy_check_mark:
  • [x] 剔除原自定义服务器上传的配置文件 :x:

:bulb: 更新预告: :bulb:

  • [ ] 使用 TypeScript 进行重构
  • [ ] 自定义服务器远端目录全路径填写
  • [ ] 加入 GUI 操作界面 :construction:
  • [ ] 桌面端软件 :construction:

:star: :star: 搭配 :dart: Trelease-Node可实现自动以服务器部署 :star: :star:

具体操作如下

全局安装

npm i trelease -g

直接运行

tre

&

trelease

或填写配置文件(默认读取 package.json), 让 Trelease 自动读取

# package.json
{
    ....
    "treleaseOptions": [
        {
            "type": "AliYun", // (QiniuYun, UPYun)                  // 仓库类型,支持阿里云, 七牛云, 又拍云, 腾讯云(未实现)
            "access": "",                                           // AccessKey 账户
            "password": "",                                         // AccessKeySecret 秘钥
            "bucket": "",                                           // 目标仓库
            "region": "oss-cn-hongkong",                            // 仓库所属区域(目前只有阿里云需必填)
            "filePath": "C:/Users/codeTom97/Desktop"                // 本地路径, 建议使用终端命令 pwd 获取
        }
    ]

}

# 自定义服务器配置与OSS配置有细小的区别

    {
        "type": "Remote",                                       // 自定义服务器上传配置
        "url": "http://127.0.0.1:12305/upload/save",            // 上传地址(Tip: 用例使用是trelease_node的上传地址)
        "bucket": "Trelease_Project",                           // 生成的目录文件
        "filePath": "C:/Users/codeTom97/Desktop"                // 本地路径, 建议使用终端命令 pwd 获取
    }