Slack Web API
Simple, convenient, and configurable HTTP client for making requests to Slack’s Web API. Deno port of @slack/web-api
Usage
import { WebClient } from "https://deno.land/x/slack_web_api@1.0.3/mod.ts"
const web = new WebClient("your-token-here")
await web.chat.postMessage({
channel: "C01C74D080J",
text: "Hi from slack for deno",
})
API
- Methods are identical to the node @slack/web-api.
- Generated docs are available at https://doc.deno.land/https/deno.land/x/slack_web_api@1.0.3/mod.ts