0.11.1 • Published 16 days ago

slack-web-api-client v0.11.1

Weekly downloads
-
License
MIT
Repository
github
Last release
16 days ago

Slack Web API Client for TypeScript

npm version deno module JSR

The slack-web-api-client library is a type-safe Slack Web API client that provides several key benefits, including:

  • A fetch-based implementation, which is compatible with most runtimes
  • Strong types for Web API responses and Block Kit, which make coding enjoyable and predictable
  • Zero additional dependencies, allowing developers to integrate this library into their projects without any obstacles

Getting Started

Working with the npm package

To install the slack-web-api-client library, simply use the standard npm/yarn command:

npm i slack-web-api-client@latest

Once you have added the slack-web-api-client library to your project's dependencies using the npm/yarn command, you can easily import any functionality you need from "slack-web-api-client" in your TypeScript code:

import { SlackAPIClient } from "slack-web-api-client";

const client = new SlackAPIClient(process.env.SLACK_BOT_TOKEN);
const response = await client.chat.postMessage({
  channel: "#random",
  text: ":wave: what's up?",
});

The second argument of the constructor allows for optional customizations:

const client = new SlackAPIClient(process.env.SLACK_BOT_TOKEN, {
  logLevel: "DEBUG", // default: "INFO"
  throwSlackAPIError: false,  // default: true
});

This argument, if provided, allows for further configuration of SlackAPIClient instance to fit your specific needs.

Working with the Deno module

Please refer to README for the Deno module.

0.11.1

16 days ago

0.11.0

17 days ago

0.10.5

25 days ago

0.10.2

28 days ago

0.10.3

27 days ago

0.10.4

27 days ago

0.10.1

29 days ago

0.10.0

29 days ago

0.9.0

1 month ago

0.9.2

30 days ago

0.9.1

1 month ago

0.8.3

1 month ago

0.8.2

2 months ago

0.8.1

3 months ago

0.8.0

4 months ago

0.7.6

4 months ago

0.7.5

4 months ago

0.7.4

5 months ago

0.7.2

6 months ago

0.7.1

6 months ago

0.5.3

6 months ago

0.7.3

6 months ago

0.5.0

7 months ago

0.7.0

6 months ago

0.6.1

6 months ago

0.5.2

7 months ago

0.6.0

6 months ago

0.5.1

7 months ago

0.4.5

7 months ago

0.4.4

8 months ago

0.3.5

9 months ago

0.4.1

8 months ago

0.3.2

10 months ago

0.4.0

9 months ago

0.3.1

12 months ago

0.4.3

8 months ago

0.4.2

8 months ago

0.3.3

9 months ago

0.3.0

12 months ago

0.2.9

1 year ago

0.2.8

1 year ago

0.2.7

1 year ago

0.2.6

1 year ago

0.2.5

1 year ago

0.2.4

1 year ago

0.2.3

1 year ago

0.2.2

1 year ago

0.2.1

1 year ago

0.2.0

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago