TypeScript SDK
Node.js / TypeScript gRPC client with API shape consistent with the C API.
Quickstart
import { TinCore } from 'tijet-grpc';
const client = new TinCore();
await client.connect();
await client.setParameter('PRINT_SPEED_TIMER', '100');
const speed = await client.getParameter('PRINT_SPEED_TIMER');
console.log(`PRINT_SPEED_TIMER = ${speed}`);
await client.close();
Note: For the complete TypeScript API reference, see the Chinese documentation.