Socket
Socket
Sign inDemoInstall

grpc-interop-server

Package Overview
Dependencies
36
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    grpc-interop-server

An implementation of gRPC interop server for Node.js


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

Source

grpc-interop-server

An implementation of gRPC interop server for Node.js

Installation

npm install grpc-interop-server --save-dev

Usage

Run from the command line:

npx grpc-interop-server --port 8080

or use in a CommonJS module:

const startServer = require('grpc-interop-server');

startServer({ port: 8080 }).then((server) => {
  //
});

or use in an ECMAScript module:

import startServer from 'grpc-interop-server';

const server = await startServer({ port: 8080 });

License

Code is taken from grpc/grpc-node repo which is available under the Apache License Version 2.0

Keywords

FAQs

Last updated on 14 Apr 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc