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

nswag-ts

v1.3.7

Published

根据swagger文档生成typescript客户端调用代码

Downloads

46

Readme

nswag-ts

介绍

根据 swagger 文档生成 typescript 客户端调用代码

安装教程

  1. npm i nswag-ts -D

使用说明

  1. 在 package.json 的 scripts 节点增加 2 个执行命令
  • "nswag-init":"nswag init", // 初始化配置

  • "nswag-run":"nswag run" // 执行代码生成

  • 第一步执行:npm run nswag-init 初始化项目

  • 初始化完成后会在项目根目录创建文件夹 nswag,里面放置了配置文件及代码模板

  • 修改配置文件和代码模板就可以进行第二步生成操作了

  • config.js 为配置文件

    • 配置所有需要生成的接口,及相应的生成规则,详见 【配置参数】
  • tpl 文件里面是代码模板(可以根据自己的实际情况调整模板)

    • base.ejs 接口调用基类模板,默认使用了 axios
    • method.ejs 接口函数生成模板
    • model.ejs 接口对象生成模板
    • mock.ejs 模拟数据代码生成模板-调用
    • mock-method.ejs 模拟数据代码生成模板-接口实例
  • 第二步执行:npm run nswag-run 执行代码生成调用接口

配置参数

{
  Name: 'nswag-ts',
  Description: '根据swagger文档生成typescript客户端调用代码',
  Apis: [
    {
      SwaggerUrl: string // 接口文档地址(必填)
      ApiBase: string // 接口根节点(必填)
      ApiName: string // 接口名称(必填)
      OutPath: string // 输出目录(默认:项目根目录:/src/api/)
      TplPath: string // 模板路径(默认:初始化后会自动copy模板文件夹到项目根目录:nswag,如果进行了修改则需配置此目录)
      Mock: boolean // 是否启用模拟数据 (默认:false)
      FormatMock: Function // 接管模拟数据格式化
      FormatControllerName: Function // 格式化模块名称(默认:接口名称+Api)
      FormatMethodName: Function // 格式化接口名称(默认:小驼峰命名)
      FormatModelName: Function // 格式化dto对象、枚举名称(默认:只会去除特殊字符)
    }
  ]
}
格式化函数示例
// 格式化模型
function formatModelName(n) {
  // TODO 预处理掉乱七八糟的字符
  return n.replace(/`1/g, '')
}

// 格式化模拟数据
function formatMock(val, p, mock) {
  switch (p.Type.TypeOf) {
    case 'string':
      switch (p.Name) {
        case 'name':
          val = '@cname'
          break
        case 'title':
          val = '@ctitle(10, 20)'
          break
        case 'mobile':
          val = '@natural(10000)'
          break
        case 'email':
          val = '@email'
          break
        case 'province':
          val = '@province'
          break
        case 'city':
          val = '@city'
          break
        case 'area':
          val = '@county'
          break
        default:
          val = '@ctitle(10, 20)'
          break
      }
      mock[p.Name] = val
      break
    case 'number':
      switch (p.Name) {
        case 'result_code':
          val = 0
          break
        case 'page_index':
          val = 1
          break
        case 'page_size':
          val = 15
          break
        case 'total_count':
          val = 30
          break
        default:
          val = '@integer(0, 100)'
          break
      }
      mock[p.Name] = val
      break
    case 'array':
      mock[p.Name + '|20'] = val
      break
  }
  return mock
}

模板编辑

// 新版本nswag-ts,优化了模板文件的数据源结构,更大程度的采用了swagger原本的数据格式,但是swagger 数据格式不太好构件相关接口定义,所以nswag-ts提供了一系列用于数据转化的方法,可以在模板文件中直接调用,通过这些方法能够减轻模板代码的编写,也可以拥有更多的自定义用法。


函数列表:
1、格式化参数对象,获取指定类型的参数
this.getParameter(参数对象,['query','body'],callback)

2、获取指定控制器依赖的模块
this.getTagModels(tag)

3、格式化返回对象
this.getResponses(m.responses)

4、获取全部类型和枚举对象
this.getModelsAndEnums()

5、根据返回对象,生成Mock数据
this.mock(responses, data.Models)

6、获取全部控制器,swagger里面对应tag标签
this.getTags()

代码仓库

  1. https://gitee.com/money-code/nswag-ts
  2. https://www.npmjs.com/package/nswag-ts