Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
grpc-ts-health-check
Advanced tools
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 2,075 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.