Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/khrj/slack-web-api
Simple, convenient, and configurable HTTP client for making requests to Slack’s Web API. Deno port of @slack/web-api
https://github.com/khrj/slack-web-api
deno slack slack-api web-api
Last synced: 3 months ago
JSON representation
Simple, convenient, and configurable HTTP client for making requests to Slack’s Web API. Deno port of @slack/web-api
- Host: GitHub
- URL: https://github.com/khrj/slack-web-api
- Owner: khrj
- License: mit
- Created: 2021-02-05T07:25:49.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-13T06:15:49.000Z (over 3 years ago)
- Last Synced: 2024-05-20T12:10:40.662Z (9 months ago)
- Topics: deno, slack, slack-api, web-api
- Language: TypeScript
- Homepage: https://deno.land/x/slack_web_api
- Size: 123 KB
- Stars: 18
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hackclub - web-api - [@slack-deno](https://github.com/slack-deno) - **(TypeScript)** _Deno port of @slack/web-api_ (Developer Utilities)
README
Slack Web API
Simple, convenient, and configurable HTTP client for making requests to Slack’s Web API. Deno port of @slack/web-api
## Usage
```ts
import { WebClient } from "https://deno.land/x/[email protected]/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](https://www.npmjs.com/package/@slack/web-api).
- Generated docs are available at https://doc.deno.land/https/deno.land/x/[email protected]/mod.ts## Supporters
[![Stargazers repo roster for @khrj/slack-web-api](https://reporoster.com/stars/khrj/slack-web-api)](https://github.com/khrj/slack-web-api/stargazers)
[![Forkers repo roster for @khrj/slack-web-api](https://reporoster.com/forks/khrj/slack-web-api)](https://github.com/khrj/slack-web-api/network/members)
## Related
- [Deno Slack SDK](https://github.com/khrj/deno-slack-sdk)
- [Deno modules](https://github.com/khrj/deno-modules)