
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
grpc-modern
Advanced tools
[](https://codecov.io/gh/daangn/grpc-modern)    fit in modern JavaScript(TypeScript) environment.
Promise
new
+ set
interface with object literal$ yarn add grpc-modern
# peer dependencies
$ yarn add @grpc/grpc-js google-protobuf
$ yarn add --dev @types/google-protobuf
# or
$ yarn add grpc google-protobuf
$ yarn add --dev @types/google-protobuf
/**
* without `grpc-modern`
*/
import * as grpc from "@grpc/grpc-js";
import { GetSomethingReq, SomethingClient } from "../stubs/something/...";
const client = new SomethingClient(
"example.com:80",
grpc.credentials.createInsecure()
);
const req = new GetSomethingReq();
req.setId("...");
req.setSomeOption(false);
client.getSomething(req, (error, response) => {
console.log(response);
});
/**
* with `grpc-modern`
*/
import { makeModernClient } from "grpc-modern";
const client = makeModernClient(SomethingClient, {
address: "example.com:80",
credential: grpc.credentials.createInsecure(),
});
const response = await client.getSomething(
set(GetSomethingReq, {
id: "...",
someOption: false,
})
);
/**
* or you can use with `grpc`
*/
import * as grpc from "grpc";
const client = makeModernClient(SomethingClient, {
address: "example.com:80",
credential: grpc.credentials.createInsecure(),
});
const response = await client.getSomething(
set(GetSomethingReq, {
id: "...",
someOption: false,
})
);
FAQs
[](https://codecov.io/gh/daangn/grpc-modern)   ![](https:
The npm package grpc-modern receives a total of 400 weekly downloads. As such, grpc-modern popularity was classified as not popular.
We found that grpc-modern 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
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.