
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@habeetat/jrpc-client
Advanced tools
JRPC-Client is a simple JSON-RPC 2.0 client for node.js and browser, developed in typescript for work synergy with JRPC-Server.
npm i @habeetat/jrpc-client
export interface TestServerRpcMethods {
/**
* say hi
*/
hi(person: { name: string, bithday: Date }): Promise<string>;
/**
* sum two numbers
*/
sum(a: number, b: number): Promise<number>;
/**
* get all todos
*/
getTodos(): Promise<{ id: number, text: string, completed: boolean }[]>;
}
(async () => {
const resolver = async (url: string, data: string, resolve: (result: any) => void) => {
console.log(`send to ${url} data ${data}`);
};
const client = new RpcClient<TestServerRpcMethods>("http://localhost:3000/rpc", resolver);
const proxy = client.createProxy();
const result = await proxy.hi({ name: "John", bithday: new Date() });
})();
FAQs
Json RPC Client
We found that @habeetat/jrpc-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.