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

@prequest/response-types-server

v1.5.2

Published

Restful-API 响应的 JSON 数据的 TypeScript 类型生成器

Downloads

29

Readme

@prequest/response-types-server

Restful-API 响应的 JSON 数据的 TypeScript 类型生成器

前言

在前端项目中,没有 fs 等 API,导致不能在运行时,动态生成 Restful-API 响应的 JSON 数据的类型文件。

因而我尝试开发了 @prequest/response-types-generator,它根据配置,可以发起请求和解析响应,最后生成类型文件。但缺点也很明显,需要将要项目中请求的接口一个一个配置到配置文件中。普通的 Get 请求还好说,但对于 Post 请求,一些复杂的传参,也不是很好处理。

本项目解决了上述问题。原理非常简单,首先开启一个 Http Server,然后在前端项目的请求库中间件中,将请求的参数和响应结果,通过一个新的请求实例,发送到 Http Server 中,Http Server 根据传参,利用 fs API 向指定目录生成类型文件即可。

项目分为两部分 @prequest/response-types-server@prequest/response-types-client

安装

npm install @prequest/response-types-server

使用

开启服务器

import server from '@prequest/response-types-server'

// 默认开启的端口为 10086
server()

// 你可以通过传参指定端口
server({ port: 10010 })

生成类型文件

HTTP Server 只接收 POST 与 OPTIONS 请求,当 HTTP Body 传输的数据满足下列参数列表,则会向指定目录输出类型文件

| 参数 | 类型 | 含义 | | ------------- | ------- | ------------------ | | outPutDir | string | 类型文件输出目录 | | outPutName | string | 文件名称 | | overwrite | boolean | 文件可复写 | | data | Json | 要解析的 Json 数据 | | interfaceName | string | 导出的接口名称 |

响应

HTTP Server 只接收到请求后,会返回下列内容

| 参数 | 类型 | 含义 | | --------- | -------- | ---------------------------------------------------------------- | | status | boolean | 操作成功与否 | | timestamp | number | 时间戳 | | error | Error | 错误信息 | | data | string[] | 生成的类型文件列表。前端可根据这个列表,判断是否需要再次发起请求 |