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

knife4j-swagger-node

v1.0.4

Published

swagger api knife4j docapi

Downloads

6

Readme

基于apidoc的Swagger文档

包含了swagger.json的生成,以及界面的展示。

原理:通过添加注解的方式生成swagger.json到public目录,再用一个html页面加载该json文件。

使用方法

1、生成swagger.json文件

knife4j-swagger-node -i app/controllers -o public/

2、接入swagger-ui

const swaggerUI = require('knife4j-swagger-node/installUI')

// for koa
swaggerUI.install(app, staticFile);

// for express
swaggerUI.install(app, express.static);

swaggerUI暴露了两个属性,staticPath和install。

如果是koa或者express,可以直接调用install

其它的,可以根据自身项目来设置swaggerUI.staticPath为公共目录。

定制化

1、可以调用接口来定制生成

对外提供crate和createWithJSON两个方法,其中createWithJSON会生成json文件。

const lib = require('knife4j-swagger-node/lib')

const api = lib.crate({
    src: path.join(__dirname, './input')
})

api.swaggerData // json的字符串内容
api.swaggerJSON // json的对象
lib.createWithJSON({
    src: path.join(__dirname, './input')
})

2、定制swaggerUI加载的接口地址

支持通过swagger-resources.json修改

注解样例

https://apidocjs.com/#examples

/schema/demo.js:

/**
* @api {post} /test_api desc_test_api
* @apiName test_api_name
* @apiGroup search
*
* @apiHeader {String} [taz] desc_taz
*
* @apiParam {Number} [tar] desc_tar
* @apiParam (Body) {Object[]} foo desc_foo
* @apiParam (Body) {String} foo.foz desc_foo.foz
* @apiParam (Query) {String} bar=bar desc_bar
*
* @apiParamExample {json} request_desc
* {{extraExample}}
*
* @apiSuccess {Number} [code=1] desc_override_code
* @apiSuccess {Object} data data_desc
* @apiSuccess {number} data.keyInDoc desc_add_extra_data_key_in_doc
*/