yeetpost
SlackAPI

Send Slack messages from your code

Keep your team informed with automated Slack notifications. Perfect 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}`, });

Ready to get started?

Start posting to Slack in minutes.