
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
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.
We found that nestjs-grpc-ui demonstrated a not healthy version release cadence and project activity because the last version was released 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
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.