
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
npm install telepact
API:
- fn.greet:
subject: string
->:
Ok_:
message: string
Server:
import * as fs from 'fs';
import * as path from 'path';
import { Message, Server, ServerOptions, TelepactSchema, TelepactSchemaFiles } from 'telepact';
const files = new TelepactSchemaFiles('/directory/containing/api/files', fs, path);
const schema = TelepactSchema.fromFileJsonMap(files.filenamesToJson);
// The schema directory may contain multiple *.telepact.yaml and
// *.telepact.json files. Subdirectories are rejected.
const handler = async (requestMessage: Message): Promise<Message> => {
const functionName = Object.keys(requestMessage.body)[0];
const arguments = requestMessage.body[functionName];
try {
// Early in the handler, perform any pre-flight "middleware" operations, such as
// authentication, tracing, or logging.
log.info("Function started", {function: functionName});
// Dispatch request to appropriate function handling code.
// (This example uses manual dispatching, but you can also use a more advanced pattern.)
if (functionName == 'fn.greet') {
var subject = arguments['subject'];
return new Message({}, {Ok_: {message: `Hello ${subject}!`}});
}
throw new Error('Function not found');
} finally {
// At the end the handler, perform any post-flight "middleware" operations
log.info("Function finished", {function: functionName});
}
};
const options = new ServerOptions();
// Set this to false when your schema does not define union.Auth_.
options.authRequired = false;
const server = new Server(schema, handler, options);
// Wire up request/response bytes from your transport of choice
transport.receive(async (requestBytes: Uint8Array): Promise<Uint8Array> => {
const response = await server.process(requestBytes);
return response.bytes;
});
Client:
import { Client, ClientOptions, Message, Serializer } from 'telepact';
const adapter: (m: Message, s: Serializer) => Promise<Message> = async (m, s) => {
const requestBytes = s.serialize(m);
// Wire up request/response bytes to your transport of choice
const responseBytes = await transport.send(requestBytes);
return s.deserialize(responseBytes);
};
const options = new ClientOptions();
const client = new Client(adapter, options);
// Inside an async function in your application:
const request = new Message({}, { 'fn.greet': { subject: 'World' } });
const response = await client.request(request);
if (response.getBodyTarget() === 'Ok_') {
const okPayload = response.getBodyPayload();
console.log(okPayload.message);
} else {
throw new Error(`Unexpected response: ${JSON.stringify(response.body)}`);
}
For more concrete usage examples, see the tests.
FAQs
The Typescript Telepact library
We found that telepact demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.