
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
kitejs 提供统一访问服务的 client,支持 Http、RPC(thrift) 协议,提供多种编解码方式(正在支持)。 kitejs 集成寻址、支持负载均衡策略
首先进行安装
npm install kitejs --save
使用方法
// for HTTP
const kite = require('kitejs');
var client = new kite.Client(
{
host: '127.0.0.1',
port: 8080,
protocol: 'HTTP',
log: {
logFile: __dirname + '/client.log',
logId: Date.now()
}
}
);
// use request component
client.request({ path: '/' }, function (err, data) {
if (err) throw err;
console.log(data);
});
// for THRIFT
const kite = require('kitejs');
var client = new kite.Client(
{
host: '127.0.0.1',
port: 8080,
protocol: 'THRIFT',
log: {
logFile: __dirname + '/client.log',
logId: Date.now()
}
}
);
client
.loadService(__dirname + '/thrift/gen-nodejs/Calculator.js')
.request(function (err, cal, conn) {
if (err) throw err;
cal.ping(function (err, response) {
console.log('ping()');
});
cal.add(1, 1, function (err, response) {
console.log(response);
});
});
// for CONSUL
const kite = require('kitejs');
var client = new kite.Client({
service: 'ies.fe.mis',
searchHostType: 'CONSUL',
log: {
logFile: __dirname + '/client.log',
logId: Date.now()
}
});
client.request({path: '/'}, function (err, data) {
console.log(data);
});
可以方便的创建一个 Client 用于请求。。。
Options
protocol 访问协议,HTTP \ THRIFT,默认HTTP
searchHostType 寻址方式 LOCAL 或者 CONSUL,默认LOCAL
service consul 时提供 PSM 信息
host 服务端域名信息
port 服务端端口信息
timeout 访问超时时间 1s
100ms
or 1
默认为秒
address 更人性化的地址设置,比如 127.0.0.1:10220
consul 提供 consul 服务地址信息
retry 重试次数,当网络不稳定时,需要重试 2
transport 选择的thrift协议。FRAMED | BUFFERED
{
consul: {
host: '127.0.0.1',
port: 2280
}
}
request
发起请求,获取服务端数据.request(options?, cb);
参数
options 可选,主要用于 HTTP 填写 PATH、HEADERS 等信息
request
的参数cb
function (err, data, conn?) {}
null
loadService
加载 Thrift Service参数
client.loadService('xxService.js')
// return client Object instance.
xxService.js
并注册入 Thrift 请求框架返回
FAQs
the rpc framework Kite for Node.js
We found that kitejs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 13 open source maintainers 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.