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 🙏

© 2024 – Pkg Stats / Ryan Hefner

koa-smartdoc-middleware

v0.0.1

Published

Smartdoc is an RESTful document generator according to document-style comment

Downloads

7

Readme

smartdoc-middleware

Smartdoc is an RESTful document generator according to document-style comment.

Smartdoc是一个基于文档化注释的RESTful文档生成器,同时也包括一个浏览接口的网页。

(Poor) English version

如何工作

Smartdoc通过AST读取接口目录下所有的API文档化注释,生成一个描述接口的数据文件,然后在中间件的挂载目录上提供一个网页,用来查看文档和测试接口。

[TOC]

用法

1. 安装

npm install --save koa-smartdoc-middleware

2. 引入中间件

例如有如下的项目结构:

- index.js
+ services // The directory where api functions defined in.
  - user.js
  - post.js
  - ...

而且,services里面的接口方法都已经写好了文档化注释。

然后就可以在Express中引用:

// index.js
const app = require('koa')();
const mount = require('koa-mount');
const smartdoc = require('koa-smartdoc-middleware');
const pathToServices = path.join('../services');
// ...
app.use(mount('/doc', smartdoc(pathToServices)));
// ...
app.listen(3000);

然后启动服务器,就可以用http://localhost:3000/doc访问文档页面了.

3. 编写文档化注释

首先需要在services目录里定义Application(任意文件都可以,但是推荐在index.js中)

// services/index.js
/**
 * 示例应用
 * @application example-app
 *
 * @author linkeo
 * @version 0.0.1
 */
module.exports = {};

注意: @application [name] 是定义Application的必须条件

然后在接口模块文件中定义模块和接口:

// services/user.js

/**
 * 用户模块
 * @module user
 * @path /user
 */
module.exports = class UserService {

  /**
   * 用户登录
   *
   * @note 登陆成功时会在响应中设置cookie
   *
   * @route {post} /login
   * @param {String} account 用户的手机号或邮箱
   * @param {String} password
   * @param {String} from 登陆的位置,可以是 'app', 'web'
   * @return {Object} 用户信息
   */
  *login(req, res) {
    //...
  }
}

注意: @module [name] 是定义Module的必须条件

注意: @route [method] [path] 是定义Action的必须条件

解析出来的结构描述文件大致如下:

name: example-app
title: Example Application
modules:
  - name: user-674e7e
    title: User Services
    path: /user
    actions:
      - name: post-login-768ed4
        title: User Login
        route:
          method: post
          path: /login
        params: ...

功能

  • 读取RESTful风格的文档化注释
  • 提供一个单页应用,用于查看和测试接口。

Todo

  • [ ] 更丰富的请求设置
  • [ ] 可以提供一个沙箱环境,保存一些请求用的变量
  • [ ] 可以在沙箱环境中执行接口测试代码