File based RPC server compatible with the Talon community command client
npm install talon-rpc
import { NodeIo, TalonRpcServer } from "talon-rpc";
function runCommand(commandId, args, options) {
// Do something
}
const io = new NodeIo("vscode-command-server");
const rpc = new TalonRpcServer(io, runCommand);
await io.initialize();
onKeypress(async () => {
await rpc.executeRequest();
});