Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
grpc-ts-health-check
Advanced tools
An implementation of gRPC health checks, written in typescript.
An implementation of gRPC
health checks, written in typescript.
It is assumed that you are using the @grpc/grpc-js
library.
yarn add grpc-ts-health-check
Install the @grpc/grpc-js
library:
yarn add @grpc/grpc-js
gRPC
-friendly error objects.import * as grpc from '@grpc/grpc-js';
import * as protoLoader from '@grpc/proto-loader';
import path from 'path';
import { HealthClient } from '../dist/proto/grpc/health/v1/Health';
import { HealthCheckResponse__Output } from '../dist/proto/grpc/health/v1/HealthCheckResponse';
import { ProtoGrpcType } from '../dist/proto/health';
export class HealthGrpcClient {
private readonly client: HealthClient;
constructor({ host, port }: { host: string; port: number }) {
const packageDefinition = protoLoader.loadSync(path.resolve('../dist/proto/health.proto'), {
arrays: true,
keepCase: true,
longs: String,
enums: String,
objects: true,
defaults: true,
});
const proto = grpc.loadPackageDefinition(packageDefinition) as unknown as ProtoGrpcType;
this.client = new proto.grpc.health.v1.Health(
`${host}:${port}`,
grpc.ChannelCredentials.createInsecure(),
);
}
checkStatus(): Promise<HealthCheckResponse__Output> {
return new Promise((resolve, reject) => {
this.client.check(
{ service: 'example' },
(error?: grpc.ServiceError | null, result?: HealthCheckResponse__Output): void => {
if (error) {
reject(error);
}
resolve(result || ({} as HealthCheckResponse__Output));
},
);
});
}
watchStatus(): grpc.ClientReadableStream<HealthCheckResponse__Output> {
return this.client.watch({ service: 'example' });
}
}
Below is a list of available methods:
check(request, callback)
Checks the status of the service once.
request
- the HealthCheckRequest
object.callback
(optional) - the callback method.watch(request)
Set the initial status of the service and continues to watch for any changes.
request
- the HealthCheckRequest
object.MIT License
Contributions are encouraged, please see further details below:
Here are some basic rules to follow to ensure timely addition of your request:
main
branch. Any other branch (unless specified by the
maintainers) will get rejected.FAQs
An implementation of gRPC health checks, written in typescript.
The npm package grpc-ts-health-check receives a total of 1,315 weekly downloads. As such, grpc-ts-health-check popularity was classified as popular.
We found that grpc-ts-health-check demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.