New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

serverless-plugin-notification

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serverless-plugin-notification

Plugin for serverless framework that notify framework actions to multiple platforms

  • 1.3.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
17
decreased by-57.5%
Maintainers
1
Weekly downloads
 
Created
Source

Serverless Plugin Notification

serverless npm version

Requirement

  1. Serverless 1.x
  2. Project setup for AWS provider

Plugin installation

  1. Open a terminal to your Serverless project
  2. npm install --save-dev serverless-plugin-notification
  3. Add serverless-plugin-notification in your serverless.yml file (see Serverless docs)
  4. Follow platform specific installation

Supported platforms

Slack

Feature
  1. Notify service deployment to predefined Slack channel with custom username. Supporting states
  • Deployment started
  • Deployment succeeded
  • Deployment failed (TODO)
  1. Predefined message format - General info in post, function and endpoint listing in thread reply
  2. Support Slack thread
  3. Support automatically retrieving deployer name
  4. EMOJIs !
Platform installation

In your serverless.yml fill the following configuration

custom:
  notification:
    deployer: /* Default deployer name, if not automatically retrieve from local variable, if not default to 'Unnamed deployer' */
    slack:
      token: /* Your slack token here */ - Follow https://api.slack.com/bot-users to get bot access token
      channel:  /* Your channel name here */ e.g '#serverless' NOTE: Using direct message '@person' will have 'channel_not_found' error at `Deployment succeeded` and `Deployment failed`
      username: /* (Optional) Username that will be used to post the message */

Webhook

Feature
  1. Notify service deployment through http webhook POST using configurable url and headers. Supporting states:
  • Deployment started
  • Deployment succeeded
  • Deployment failed (TODO)
Missing pieces
  1. Content-Type currently support only application/json
  2. Does not support CORs
Plattform installation

In your serverless.yml fill the following configuration

custom:
  notification:
    webhook:
      url: /* Your webhook url here */
      headers: /* Your headers here - Must be in object format */
        Content-Type: application/json

FAQs

Package last updated on 09 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc