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

apipost-grpc

v2.0.7

Published

apipost-grpc

Downloads

164

Readme

🚀 apipost-grpc

Apipost 的 gRpc 模块,支持模拟 gRpc client 进行请求,并支持请求参数的Mock。

Apipost8 支持

Install

$ npm install apipost-grpc 

使用

const gRpcClient = new ApipostGrpc({
    proto:path.resolve(__dirname, './protos/HelloWorld.proto'),
    // ssl:{
    //     ca:path.resolve(__dirname, './cert/CA.crt'),
    //     key:path.resolve(__dirname, './cert/CLIENT_key.pem'),
    //     cert:path.resolve(__dirname, './cert/CLIENT.crt')
    // }
});

request(service, method, target)

示例:发送 gRpc 请求

let target = {
    "request": {
        "url": "127.0.0.1:50051",
        "header": [
            {
                "is_checked": "1",
                "key": "content-type",
                "value": "1111111"
            }
        ],
        "body": {
            "raw": `{"name": "jim", "city":"上海"}`
        }
    }
};
gRpcClient.request('Greeter', 'SayHello', target).then(function (response) {
    console.log(response)
})

serverList()

示例:获取所有 server 列表

gRpcClient.serverList()

返回:

[
    {
        "short": "Greeter", // 服务短名称
        "service": "helloworld.Greeter" // 服务长名称(带 namespac)
    }
]

allMethodList()

示例:获取所有 method 列表

gRpcClient.allMethodList()

返回:

{
    "helloworld.Greeter": { // 服务名(带 namespace)
        "service": "Greeter", // 服务名
        "method": [
            {
                "name": "SayHello", // 方法名
                "requestBody": { // 示例请求参数
                    "name": "本起层感去交",
                    "city": "性压件地经阶"
                }
            },
            {
                "name": "printAge",
                "requestBody": {
                    "age": "产年取产"
                }
            }
        ]
    }
}

methodList(server)

示例:获取指定server的method 列表

gRpcClient.methodList('helloworld.Greeter')

返回:

{
    "service": "Greeter", // 服务名
    "method": [
        {
            "name": "SayHello", // 方法名
            "requestBody": { // 示例请求参数
                "name": "果现不参应非",
                "city": "而而保"
            }
        },
        {
            "name": "printAge",
            "requestBody": {
                "age": "资着己南段"
            }
        }
    ]
}