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

@hia-doc/dotnetdoc-runner

v0.1.9

Published

Standalone .NET XML documentation runner and CLI.

Readme

@hia-doc/dotnetdoc-runner

Standalone runner and CLI for compiler-generated .NET XML documentation files, C# source inputs, ASP.NET endpoint surface inputs, ASP.NET/Razor markup comment inputs and .sln/.csproj structure discovery.

DotNetDoc 独立 runner 与 CLI,支持编译器 XML documentation、C# 源码、 ASP.NET endpoint surface、ASP.NET/Razor 标记层注释,以及 .sln/.csproj 结构发现。

hia-dotnetdoc --config dotnetdoc.config.json

This package emits DotNetDoc extraction artifacts, HIA document artifacts, optional source relation artifacts, ASP.NET endpoint extraction artifacts and a documentation producer result manifest without embedding private source text.

It also exposes classifyDotnetBuildDiagnostics() for target scripts that need to turn compiler XML documentation warnings such as CS1591 into a generated/designer/manual-source evidence summary.

它也导出 classifyDotnetBuildDiagnostics(),供目标项目脚本把 CS1591 等 编译器 XML documentation warning 分类为 generated / designer / manual source 边界 evidence。

dotnet-markup-comments inputs emit dotnetdoc-markup-comment-extraction and matching HIA document artifacts for .aspx, .ascx, .cshtml and .razor files.

dotnet-markup-comments input 会为 .aspx.ascx.cshtml.razor 文件输出 dotnetdoc-markup-comment-extraction 与对应 HIA document。

Config inputs support the original single path, explicit paths, and workspace-relative glob / globs patterns. Glob expansion is performed inside the workspace and never accepts absolute paths or .. traversal.

配置输入支持原有单个 path、显式 paths,以及工作区相对的 glob / globs。glob 展开只在工作区内执行,不接受绝对路径或 .. 路径穿越。

For dotnet-csharp-source, config inputs can also provide projectPath to let the runner resolve .cs files from a .csproj before invoking the lightweight Roslyn source extractor.

dotnet-csharp-source,配置也可以提供 projectPath,由 runner 先从 .csproj 推导源码文件集合,再调用轻量 Roslyn source extractor。

当同一请求同时包含 XML documentation 与带 projectPath 的 C# source 时, dotnetdoc-source-relation 会携带同一 project-relative identity,并把 resolution、confidence、provenance 分开输出。relation 仍是 metadata-only: sourcesContentPolicy: none,不嵌入源码正文,也不授予 source reader 能力。

{
  "kind": "dotnet-csharp-source",
  "projectPath": "src/Portal.Components/Portal.Components.csproj",
  "artifactBasePath": "source/Portal.Components",
  "title": "Portal Components Source API"
}
{
  "kind": "dotnet-markup-comments",
  "globs": ["src/Web/**/*.{aspx,ascx,master,cshtml,razor}"],
  "excludeGlobs": ["src/Web/**/bin/**", "src/Web/**/obj/**"],
  "artifactBasePath": "web/markup-comments",
  "title": "Web Markup Comments"
}