Connector Pro
$ npm install -S @taskforcesh/connector-pro$ yarn add -S @taskforcesh/connector-pro$ pnpm install -S @taskforcesh/connector-proimport { ConnectPro } from "@taskforcesh/connector-pro";
ConnectPro(
"My Connection",
"My token",
// IORedis options
{
host: "localhost",
port: 6379,
},
// Options
{
// Specify a team where to put this connection if needed.
team: "my team",
// Specify a custom backend if using on-premises
backend: "ws://localhost:9876",
}
);
Last updated