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

grpc-pack

v0.2.3

Published

Simpler use of grpc in Node.js

Downloads

17

Readme

gRPC Pack

Version License Forks Stars Watchers

Simpler use of grpc in Node.js.

Install

$ npm install grpc-pack or yarn add grpc-pack

Usage

Single Proto

  • Model and Service

    syntax = "proto3";
    
    package service;
    
    service Greeter {
      rpc Hello (Name) returns (Message) {}
    }
    
    message Name {
      string name = 1;
    }
    
    message Message {
      string message = 1;
    }

Server

const { createServer } = require('grpc-pack');
const server = createServer();

server.use({
  protoPath: 'path/to/directory_proto',
  protoName: 'greeter.proto',
  serviceName: 'Greeter',
  routes: {
    hello: (call, callback) => {
      callback(null, { message: `Hello, ${call.request.name}` });
    },
  },
});

server.listen('0.0.0.0:6969');

Client

const { createClient } = require('grpc-pack');
const client = createClient(
  {
    protoPath: 'path/to/directory_proto',
    protoName: 'greeter.proto',
    serviceName: 'Greeter',
  },
  '0.0.0.0:6969'
);

client.hello({ name: 'Seorang Eksa' }, (err, { message }) => {
  if(err) throw err;
  console.log(message);
});

Separate Proto Model and Service

  • Service

    syntax="proto3";
    
    package service;
    
    option go_package = "github.com/zoobc/zoobc-core/common/service";
    
    import "model/block.proto";
    import "google/api/annotations.proto";
    
    // BlockService represent request on Blockchain's Block
    service BlockService {
        rpc GetBlocks(model.GetBlocksRequest) returns (model.GetBlocksResponse) {
            option (google.api.http) = {
                get: "/v1/block/GetBlocks"
            };
        }
    }
  • Model

    // Block represent the block data structure stored in the database
    message Block {
      int64 ID = 1 [ jstype = JS_STRING ];
      uint32 Height = 2;
      string CumulativeDifficulty = 3;
      int64 TotalCoinBase = 4 [ jstype = JS_STRING ];
      uint32 Version = 5;
    }
    
    // BlockExtendedInfo represent the Block data plus part of block data not to be persisted to database
    message BlockExtendedInfo {
      Block Block = 1;
    }
    
    // GetBlocksRequest create request to get a list block
    message GetBlocksRequest {
      // Fetch block from `n` height
      uint32 Height = 1;
    }
    
    message GetBlocksResponse {
      // Number of block returned
      uint32 Count = 1;
      // Blocks height returned from
      uint32 Height = 2;
      // Blocks returned
      repeated Block Blocks = 3;
    }

Server

const { createServer } = require('grpc-pack');
const server = createServer();
const mockup = [
  {
    ID: '1',
    Height: 1,
    CumulativeDifficulty: 'Test 1',
    TotalCoinBase: 10000,
    Version: 1,
  },
  {
    ID: '2',
    Height: 2,
    CumulativeDifficulty: 'Test 2',
    TotalCoinBase: 20000,
    Version: 1,
  },
  {
    ID: '3',
    Height: 2,
    CumulativeDifficulty: 'Test 3',
    TotalCoinBase: 30000,
    Version: 1,
  },
];

server.use({
  protoPath: 'path/to/directory_proto',
  protoName: 'block.proto',
  servicePath: 'service',
  serviceName: 'BlockService',
  routes: {
    GetBlocks: (call, callback) => {
      const Height = call.request.Height;
      const Blocks = Height > 0 ? mockup.filter(f => f.Height === Height) : mockup;
      const Count = Blocks.length;
      const GetBlocksResponse = {
        Count,
        Height,
        Blocks,
      };
      callback(null, GetBlocksResponse);
    },
  },
});

server.listen('0.0.0.0:6969');

Client

const { createClient } = require('grpc-pack');
const client = createClient(
  {
    protoPath: 'path/to/directory_proto',
    protoName: 'block.proto',
    servicePath: 'service',
    serviceName: 'BlockService',
  },
  '0.0.0.0:6969'
);

const params = { Height: 1 };
client.GetBlocks(params, (err, res) => {
  if(err) throw err;
  console.log(res);
});

License

This project is licensed under the MIT License - see the LICENSE file for details