Skip to content

Latest commit

 

History

History

nestjs-slack-webhook

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

nestjs-slack-webhook

Actions Status npm version

Nest.js + Slack Incoming Webhook

Install

npm install nestjs-slack-webhook

Usage

@Module({
  imports: [
    SlackModule.forRoot({
      url: "SLACK_WEBHOOK_URL", // ref: https://api.slack.com/messaging/webhooks#posting_with_webhooks
    }),
  ],
})
export class AppModule {}

Inject IncomingWebhook instance

@Injectable()
export class AppService {
  constructor(
    @InjectSlack() private readonly slack: IncomingWebhook,
  ) {}
}

Contributing

PRs accepted.

License

MIT © g59