Socket
Socket
Sign inDemoInstall

@temporalio/client

Package Overview
Dependencies
6
Maintainers
8
Versions
75
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@temporalio/client


Version published
Weekly downloads
207K
decreased by-8.03%
Maintainers
8
Created
Weekly downloads
 

Package description

What is @temporalio/client?

@temporalio/client is an npm package that provides a client for interacting with Temporal, a platform for orchestrating microservices and managing workflows. It allows developers to start, query, and manage workflows and activities in a Temporal server.

What are @temporalio/client's main functionalities?

Starting a Workflow

This feature allows you to start a new workflow. The code sample demonstrates how to create a connection to the Temporal server, instantiate a WorkflowClient, and start a workflow with a specified task queue.

const { Connection, WorkflowClient } = require('@temporalio/client');

async function run() {
  const connection = new Connection();
  const client = new WorkflowClient(connection.service);
  const handle = await client.start('exampleWorkflow', { taskQueue: 'example' });
  console.log(`Started workflow with ID: ${handle.workflowId}`);
}

run().catch(err => console.error(err));

Querying a Workflow

This feature allows you to query the state of a running workflow. The code sample shows how to get a handle to a workflow using its ID and perform a query on it.

const { Connection, WorkflowClient } = require('@temporalio/client');

async function run() {
  const connection = new Connection();
  const client = new WorkflowClient(connection.service);
  const handle = client.getHandle('exampleWorkflowId');
  const result = await handle.query('exampleQuery');
  console.log(`Query result: ${result}`);
}

run().catch(err => console.error(err));

Cancelling a Workflow

This feature allows you to cancel a running workflow. The code sample demonstrates how to get a handle to a workflow using its ID and cancel it.

const { Connection, WorkflowClient } = require('@temporalio/client');

async function run() {
  const connection = new Connection();
  const client = new WorkflowClient(connection.service);
  const handle = client.getHandle('exampleWorkflowId');
  await handle.cancel();
  console.log('Workflow cancelled');
}

run().catch(err => console.error(err));

Other packages similar to @temporalio/client

Readme

Source

@temporalio/client

NPM

Part of Temporal's TypeScript SDK.

Keywords

FAQs

Last updated on 12 Jan 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc