Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
hawkly-grpc
Advanced tools
This is a wrapper around gRPC to add opentracing and async/await.
To run the server, add the hawklyMiddleware
with configuration as a middleware to Mali
.
const PROTO_PATH: string = __dirname + '/../proto/helloworld.proto';
const grpcHost = '0.0.0.0:1000';
const app: Mali = new Mali(PROTO_PATH);
const hawklyTracerOptions: any = {
accessToken: 'test',
componentName: 'testServerComponent',
};
app.use(hawklyMiddleware(hawklyTracerOptions));
app.use({
sayHello: () => {
// handler code
}
});
app.start(grpcHost);
We provide a wrapper for the grpc client (based on a rewrite of https://www.npmjs.com/package/grpc-caller), which will automatically create a span
and add it's context to the outgoing grpc call.
To create a client you need to pass options to instantiate both the Hawkly Tracer
and the grpc client
.
import {
// Use this to create a new gRPC client from a proto file
// This lets you call the services defined in the proto file
createClient,
} from 'hawkly-grpc';
// defince your proto path
const PROTO_PATH: string = __dirname + '/helloworld.proto';
// create the client and tracer
const { tracer, client } = createClient(
{
// hawkly
accessToken: 'get your token from hawkly.io',
componentName: 'myComponent',
// grpc
host: grpcHost,
proto: PROTO_PATH,
name: 'Greeter',
},
);
// Create a new span to cover this unit of work
const span: any = tracer.startSpan('myFirstSpan');
// await the result of our gRPC call to `sayHello`
// and an object of options to the call to specify the arg etc
const request:Promise<any> = await client.sayHello({
arg: { name: grpcHost },
// pass the span we just created
span,
});
// do stuff with result
// finish our span
span.finish();
Span
If you need access to the Span
created for the request, you can pass in requestSpan:true
to the options of the call.
This will return you a tuple with request
as a Promise and requestSpan
and span
as the span (both exist so you can use destructuring
without having a local variable conflict with span
).
import {
// Use this to create a new gRPC client from a proto file
// This lets you call the services defined in the proto file
createClient,
// request interface type
TracedUnaryRequest,
} from 'hawkly-grpc';
// await the result of our gRPC call to `sayHello`
// and an object of options to the call to specify the arg etc
const {request, requestSpan}:TracedUnaryRequest = await client.sayHello({
arg: { name: grpcHost },
// pass the span we just created
span,
requestSpan: true,
});
const result:any = await request;
To simplify error handling for errors raised specifically in the server handler code we export an error type HawklyError
.
When you throw it in your rpc handler it will be returned to the caller and instatiated as a HawklyError
on the caller side.
function sayHello() {
throw new HawklyError('This is a test error', 'testError', { foo: 'bar' });
}
try {
const result: any = await client.sayHello({
arg: { name: grpcHost },
// pass in our span
span,
});
// do something with result
} catch (error) {
if(error instanceof HawklyError){
// error throw by server rpc
console.log(error.getMessage()); // 'This is a test error'
console.log(error.getEventName()); //'testError'
console.log(error.getPayload()); //{ foo: 'bar' }
} else {
// any other grpc error
}
}
hawkly.io Owen Kelly
FAQs
An gRPC wrapper with an OpenTracing compatible tracer for hawkly.io
The npm package hawkly-grpc receives a total of 1 weekly downloads. As such, hawkly-grpc popularity was classified as not popular.
We found that hawkly-grpc 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.