A Javascript client for communicating with Holochain's App Interface API.
This client is guided by the interfaces defined in the holochain/holochain project.
- Support for Zomelets
npm i @spartan-hc/app-interface-client
import { AppInterfaceClient } from '@spartan-hc/app-interface-client';
const client = new AppInterfaceClient( app_port );
const app_client = await client.app( auth_token );
await app_client.call( "role_name", "zome_name", "fn_name", args );
See CONTRIBUTING.md