Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
nestjs-grpc-ui
Advanced tools
NestJS GRPC UI is a library that provides a simple UI to interact with your GRPC server using the reflection API. You can see the available services and methods, and test them directly from here.
A NestJS module provides a simple UI to interact with gRPC services in a NestJS application.
npm install nest-grpc-ui
gRPC is a high-performance, open-source, universal RPC framework that enables efficient communication between microservices. Nest Grpc UI is motivated by the need for a user-friendly interface to interact with gRPC services in a NestJS application. By providing a simple and intuitive UI, developers can easily test, debug, and monitor their gRPC services, enhancing the overall development experience.
First you need to import the module in your app.module.ts
file:
import { Module } from "@nestjs/common";
import { GrpcUiModule } from "nestjs-grpc-ui";
@Module({
imports: [
GrpcUiModule.forRoot({
grpcServer: "localhost:50051",
endpointUI: "/grpc-ui",
enabled: true, // Optional, default is true (this is useful to disable the UI in production environments)
}),
],
})
export class AppModule {}
Then you can use the UI by accessing the /grpc-ui
endpoint in your browser 🚀
nest-grpc-ui
is MIT licensed.
FAQs
NestJS GRPC UI is a library that provides a simple UI to interact with your GRPC server using the reflection API. You can see the available services and methods, and test them directly from here.
The npm package nestjs-grpc-ui receives a total of 0 weekly downloads. As such, nestjs-grpc-ui popularity was classified as not popular.
We found that nestjs-grpc-ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.