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

torus-apidoc

v1.0.6

Published

Create API document with Markdown format document

Readme

Torus-apidoc

MIT License

Overview

Markdown形式のドキュメントでAPIドキュメントを作成することができます。

Description

marked を使用して、Markdown形式のドキュメントをHTMLファイルとPDFファイルに変換します。 保存することで自動的にエクスポートします。

レスポンシブデザインに対応し、どのデバイスでもキレイに見ることが出来ます。

Demo

demo

Requirement

このツールは以下のnpmモジュールを使用しています。 package.jsonに記載されているので、まとめてインストールされます。

サーバ関連

  • browser-sync

HTMLコンパイル

  • ejs
  • ejs-cli

CSS コンパイル

  • autoprefixer
  • browserslist
  • cssnano
  • postcss-cli
  • postcss-cssnext
  • postcss-import
  • postcss-mixins
  • precss

JS コンパイル

  • glob
  • webpack
  • webpack-cli

Markdown to HTML

  • jsdom
  • marked
  • phantomjs

HTML to PDF

  • html-pdf
  • html2pdf-cli

Other

  • npm-check-updates
  • npm-run-all
  • watch

Install

1. クローン

クローンしたあとは、npm install を行ってください

2. コンパイルとエクスポート

下記コマンドを実行すればサーバが立ち上がり、コンパイル環境が整います。

npm run start:project

3. resources/doc/api.md を編集する

編集すると自動的にHTMLが更新され、ブラウザもリフレッシュされます。 と同時に /doc/ 内に api_document.pdf が作成されます。

Usage

基本は通常のMarkDownと同様ですが、一部オリジナルの記法があります。

ドキュメントタイトル

# はドキュメントタイトルです。 必ず1つだけにしてください。 HTMLでは<h1>に変換され、ページタイトルに適用されます。

Example

# ドキュメントタイトル

API名

## はAPI名になります。 HTMLでは<h2>に変換され、API名と左メニューに使用されます。 また、カッコ(())を記述し、POST/GET/DELETEContent-Typeを加えてください。

Example

## API名(GET,application/json)

サンプル等ソースの表示

ソースの表示はコード記法を<source>で括ってください。 **TEXT**の強調記法は見出し要素となります。

<source>

**PRODUCTION**
```
https://example.com/add
```

**STAGING**
```
https://stg.example.com/add
```

</source>

サンプル等ソースのカスタム記法

ソースコードのカスタム記法です。 下記のようにコードフォーマットのあとにコロン(:)で見出し名を設定します。

```js:PRODUCTION
https://example.com/add
```

```js:STAGING
https://stg.example.com/add
```

パラメータ部分の特殊記法

パラメータ表の部分にのみ、特殊な記法を追加しました。 下記のように、パラメータ名に 型名(_型名_)と 必須(_*_)を入れられるようにしました。

|パラメータ名|説明|
|--|--|
|name _string_ _*_|氏名|
|tel _string_ _*_|電話番号|
|mail _string_ _*_|メールアドレス|

Licence

MIT

Author

axcelwork