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

@skspwork/config-doc

v2.3.2

Published

Interactive documentation tool for JSON configuration files (appsettings.json)

Readme

ConfigDoc

JSON設定ファイル(appsettings.json等)のインタラクティブなドキュメント管理ツール

特徴

  • 🌲 階層的なツリー表示: JSON設定ファイルを見やすいツリー構造で表示
  • 📝 ドキュメント管理: 各プロパティに説明、影響ファイル、メモを追加
  • 💾 永続化: ドキュメントは .config_doc/ ディレクトリに保存
  • 📂 ファイルブラウザ: 内蔵のファイルシステムブラウザで設定ファイルを選択
  • 📄 HTMLエクスポート: スタンドアロンのHTMLドキュメントとして出力
  • 🔄 複数ファイル対応: プロジェクト内の複数の設定ファイルを管理

インストールと使用方法

npx で即座に起動(推奨)

インストール不要で、すぐに使えます:

npx @skspwork/config-doc

グローバルインストール

頻繁に使う場合は、グローバルにインストール:

npm install -g @skspwork/config-doc
config-doc

使い方

  1. 起動: プロジェクトのルートディレクトリで npx @skspwork/config-doc を実行
  2. 自動起動: CLIが空きポートを探し、ブラウザが自動で開きます
  3. 設定ファイル選択: ファイルブラウザから appsettings.json などを選択
  4. ドキュメント作成: ツリービューで各プロパティにドキュメントを追加
  5. 保存: ドキュメントは .config_doc/ に自動保存されます
  6. 終了: ブラウザを閉じて、ターミナルで Ctrl+C

要件

  • Node.js 18.0.0 以上

プロジェクト構造

your-project/
├── appsettings.json          # 設定ファイル
├── .config_doc/              # ConfigDoc が作成(自動生成)
│   ├── config_files.json     # 設定ファイル情報
│   ├── docs/                 # ドキュメントファイル
│   │   └── appsettings.docs.json
│   └── index.html            # エクスポートされたHTML
└── ...

開発

このリポジトリを開発用にセットアップする場合:

# リポジトリをクローン
git clone https://github.com/skspwork/ConfigDoc.git
cd ConfigDoc

# 依存関係をインストール
cd packages/web
npm install

# 開発サーバーを起動
npm run dev

# ビルド
npm run build

# ローカルでテスト(プロジェクトルートから)
cd ../..
npm run build
npm link

ライセンス

MIT License - Copyright (c) 2026 skspwork

詳細は LICENSE ファイルを参照してください。

リンク