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

@miracleplus/mplus

v0.1.4

Published

奇绩创坛命令行工具(mplus CLI)

Readme

mplus CLI

奇绩创坛命令行工具,在终端中与 apply.miracleplus.combuild.miracleplus.com 交互。

面向人群

  1. 目前主要面向奇绩合伙人(陆奇, 曹勖文, 毛圣博, 栾运明 等)
  2. 创业者暂时用不了,暂时不支持创业者的"填写申请", 提交申请"功能。
  3. 暂时不支持校友(被投资企业)

本工具 2026 年 4 月 11 号上线,刚上线的功能有限,后续会支持更多功能,感谢你的耐心等待。
任何意见或建议请发邮件到 [email protected],或者飞书找 @郑诚


安装

npm install -g @miracleplus/mplus

快速开始

# 1. 配置 API Key
mplus configure

# 2. 验证身份
mplus whoami

API Key 获取方式:登录奇绩创坛 → 账户设置 → 访问密钥 → 新建密钥。


常用命令

| 命令 | 说明 | |---|---| | mplus configure [--profile <name>] | 配置 API 连接(endpoint + key)| | mplus whoami [--json] | 查看当前登录身份 | | mplus profiles | 列出所有已配置的 profile | | mplus use <profile> | 切换默认 profile | | mplus logout [--profile <name>] | 清除登录状态 |

所有命令支持 --help 查看详细用法,例如 mplus configure --help


多环境(Profile)

同时管理多个环境时:

mplus configure                       # 配置默认(生产)
mplus configure --profile staging     # 配置测试环境

mplus use staging                     # 切换到测试环境
mplus whoami --profile staging        # 临时使用,不切换默认

环境变量(CI/CD)

适用于无法交互式运行 mplus configure 的场景:

| 变量 | 说明 | |---|---| | MPLUS_KEY_ID | API Key ID | | MPLUS_KEY_SECRET | API Key Secret | | MPLUS_ENDPOINT | API 端点地址 |

三个变量需同时设置,完全跳过本地配置文件:

MPLUS_KEY_ID=ki_xxx \
MPLUS_KEY_SECRET=ks_xxx \
MPLUS_ENDPOINT=https://apply.miracleplus.com \
  mplus whoami

配置文件

存储于 ~/.config/mplus/config.json(权限 0600)。
⚠️ 含有 Key Secret,请勿提交到版本库或分享给他人。