Coming soon
Slack connections are not available yet. LinkedIn, X, Bluesky, Discord, Telegram and Mastodon are live today. The examples below show how this will work once Slack ships.
SlackAPI
Send Slack messages from your code
Slack connections are coming soon. Once they ship, you will be able to keep your team informed with automated Slack notifications for alerts, updates, and team communication.
What you can build
Notify on new signups
Celebrate every new user with your team.
import { yeetpost } from "yeetpost";
await yeetpost({
connection: "slack",
text: `New signup: ${user.email} from ${user.company}`,
});Alert on errors
Get instant notifications when something goes wrong.
import { yeetpost } from "yeetpost";
await yeetpost({
connection: "slack",
text: `Error in ${service}: ${error.message}\n\nStack: ${error.stack}`,
});Daily standup summaries
Automate your team's daily updates.
import { yeetpost } from "yeetpost";
await yeetpost({
connection: "slack",
text: `Daily summary:\n- PRs merged: ${stats.prs}\n- Issues closed: ${stats.issues}\n- Deploys: ${stats.deploys}`,
});Related features
- Message Slack from your terminal
- Automate LinkedIn posts from your code
- Post to X programmatically
- Post to Bluesky from your code
Explore the full catalog on the features hub.
Related resources
Ready to get started?
Start posting to LinkedIn, X, Bluesky, Discord, Telegram and Mastodon today, and be ready when Slack ships.