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

@mdview/cli

v0.1.0

Published

mdview command-line: render / export / convert / serve.

Readme

@mdview/cli

mdview 命令行工具。

安装

npm i -g @mdview/cli
# 或本地试用
npx @mdview/cli render foo.md

命令

mdview render <file>

把 markdown 渲染为 HTML 片段(不含外壳),输出到 stdout 或 --out 指定的文件。

mdview render README.md > readme.html
mdview render README.md --theme medium -o out.html

mdview export <file>

导出为 .mdv.html 自渲染文件。

mdview export README.md --form progressive       # 默认
mdview export README.md --form minimal --theme github
mdview export README.md --form standalone        # 完全离线,不依赖 CDN
mdview export README.md --form all               # 三个形态各导一份

mdview convert <file>

在三种 .mdv.html 形态之间互转,源码保持不变。

mdview convert foo.mdv.html --to standalone -o foo.standalone.mdv.html

mdview serve <file>

起一个本地 HTTP 服务,浏览器访问 http://localhost:3030,文件改动自动刷新页面(SSE 长连接)。

mdview serve README.md
mdview serve README.md --theme medium --port 8080
mdview serve README.md --no-watch

适合写文章 / 边写边看的场景,比反复 export 然后开浏览器方便。

别名

CLI 入口同时注册了 mdviewmdv,二选一。