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

cis-api-tool

v0.0.51

Published

根据 swagger/yapi/apifox 的接口定义生成 TypeScript/JavaScript 的接口类型及其请求函数代码。

Downloads

81

Readme

cis-api-tool

此项目来源于yapi-to-typescript,根据项目要求进行了代码改造。

与原版的区别

  1. 解决了项目TS报错,支持 TS 4.9.5

  2. 移除了 vtilshaoma依赖

  3. serviceType 支持 apifox 项目。有两种配置方式

    1. 可写死 https://api.apifox.com ,然后配置 apifoxProjectId
    2. 使用全路径,https://api.apifox.com/v1/projects/6720131/export-openapi ,此时可以不设置 apifoxProjectId,代码会从URL中自动提取。
  4. 采用按模块生成 request 方法以及 interface 类型(文件夹名称为模块名称的拼音),随后在 index.ts 中导出,因此 outputFilePath 不再起作用,目前生成目录写死的 src/service ,后续改成配置。

  5. 增加 pathPrefix 配置,统一去掉接口路径的某部分,例如 '/api'(一般在request统一添加路径时使用)。

  6. 删除了 mockUrl\requestConfig 等生成内容,仅生成最简单的request方法、请求参数类型、返回数据类型。

  7. 生成的请求方法调用方式为 request.get\request.post,所以你的 request 方法需要实现对应的 method 方法。

许可

MIT © x011223