
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
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 2,173 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
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.