All Projects → weixu365 → Serverless Scriptable Plugin

weixu365 / Serverless Scriptable Plugin

Licence: mit
Adding script support to Serverless 1.x which enables you to customize Serverless behavior without writing a plugin.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Serverless Scriptable Plugin

Discfg
A distributed, serverless, configuration tool using AWS services
Stars: ✭ 75 (-10.71%)
Mutual labels:  serverless
Pragmaticai
[Book-2019] Pragmatic AI: An Introduction to Cloud-based Machine Learning
Stars: ✭ 79 (-5.95%)
Mutual labels:  serverless
Formio
A Form and Data Management Platform for Progressive Web Applications.
Stars: ✭ 1,245 (+1382.14%)
Mutual labels:  serverless
Joe
Run a Java program without an operating system by building the OS into the Java program
Stars: ✭ 76 (-9.52%)
Mutual labels:  serverless
Booster.js
The speed and performance optimizier for your website, delivering fast web experiences to users.
Stars: ✭ 1,215 (+1346.43%)
Mutual labels:  serverless
Write With Me
Real-time Collaborative Markdown Editor
Stars: ✭ 81 (-3.57%)
Mutual labels:  serverless
Puppeteer Functions
Puppeteer Firebase Functions demo
Stars: ✭ 75 (-10.71%)
Mutual labels:  serverless
Comingornot
A perfect event organizer
Stars: ✭ 83 (-1.19%)
Mutual labels:  serverless
Tensorflow Lambda Layer
Lets you import Tensorflow + Keras from an AWS lambda
Stars: ✭ 79 (-5.95%)
Mutual labels:  serverless
Docker In Aws Lambda
Run Docker containers in AWS Lambda
Stars: ✭ 82 (-2.38%)
Mutual labels:  serverless
Lambda Refarch Webapp
The Web Application reference architecture is a general-purpose, event-driven, web application back-end that uses AWS Lambda, Amazon API Gateway for its business logic. It also uses Amazon DynamoDB as its database and Amazon Cognito for user management. All static content is hosted using AWS Amplify Console.
Stars: ✭ 1,208 (+1338.1%)
Mutual labels:  serverless
Seoul Bike
서울시 자전거 따릉이를 위한 대여소 찾기 서비스 입니다.
Stars: ✭ 78 (-7.14%)
Mutual labels:  serverless
Awesome Zeit
The best resources related to ZEIT
Stars: ✭ 1,242 (+1378.57%)
Mutual labels:  serverless
Hook.io
Open-Source Microservice Hosting Platform
Stars: ✭ 1,201 (+1329.76%)
Mutual labels:  serverless
Python Lambda
A toolkit for developing and deploying serverless Python code in AWS Lambda.
Stars: ✭ 1,247 (+1384.52%)
Mutual labels:  serverless
Serverless Plugin Git Variables
⚡️ Expose git variables to serverless
Stars: ✭ 75 (-10.71%)
Mutual labels:  serverless
Serverless Boilerplate
Serverless project template
Stars: ✭ 80 (-4.76%)
Mutual labels:  serverless
Beyond.ts
Stars: ✭ 84 (+0%)
Mutual labels:  serverless
Examples
Serverless Examples – A collection of boilerplates and examples of serverless architectures built with the Serverless Framework on AWS Lambda, Microsoft Azure, Google Cloud Functions, and more.
Stars: ✭ 9,743 (+11498.81%)
Mutual labels:  serverless
Keynuker
🔐💥 KeyNuker - nuke AWS keys accidentally leaked to Github
Stars: ✭ 82 (-2.38%)
Mutual labels:  serverless

npm version Build Status Test Coverage Code Climate Issue Count

What's the plugins for?

This plugin allows you to write scripts to customize Serverless behavior for Serverless 1.x and upper

It also supports running node.js scripts in any build stage.

Quick Start

  1. Install

     npm install --save-dev serverless-scriptable-plugin
    
  2. Add to Serverless config

     plugins:
       - serverless-scriptable-plugin
    
     custom:
       scriptHooks:
         before📦createDeploymentArtifacts: npm run build
    

Example

  1. Customize package behavior

    The following config is using babel for transcompilation and packaging only the required folders: dist and node_modules without aws-sdk

    plugins:
      - serverless-scriptable-plugin
    
    custom:
      scriptHooks:
        before📦createDeploymentArtifacts: npm run build
    
    package:
      exclude:
        - '**/**'
        - '!dist/**'
        - '!node_modules/**'
        - node_modules/aws-sdk/**
    
  2. Run any command as a hook script

    It's possible to run any command as the hook script, e.g. use the following command to zip the required folders

    plugins:
      - serverless-scriptable-plugin
    
    custom:
      scriptHooks:
        after📦createDeploymentArtifacts: zip -q -r .serverless/package.zip src node_modules
    
    service: service-name
    package:
      artifact: .serverless/package.zip
    
  3. Create CloudWatch Log subscription filter for all Lambda function Log groups, e.g. subscribe to a Kinesis stream

    plugins:
      - serverless-scriptable-plugin
    
    custom:
      scriptHooks:
        after📦compileEvents: build/serverless/add-log-subscriptions.js
    
    provider:
      logSubscriptionDestinationArn: 'arn:aws:logs:ap-southeast-2:{account-id}:destination:'
    

    and in build/serverless/add-log-subscriptions.js file:

    const resources = serverless.service.provider.compiledCloudFormationTemplate.Resources;
    const logSubscriptionDestinationArn = serverless.service.provider.logSubscriptionDestinationArn;
    
    Object.keys(resources)
      .filter(name => resources[name].Type === 'AWS::Logs::LogGroup')
      .forEach(logGroupName => resources[`${logGroupName}Subscription`] = {
          Type: "AWS::Logs::SubscriptionFilter",
          Properties: {
            DestinationArn: logSubscriptionDestinationArn,
            FilterPattern: ".",
            LogGroupName: { "Ref": logGroupName }
          }
        }
      );
    
  4. Run multiple commands for the serverless event

    It's possible to run multiple commands for the same serverless event, e.g. Add CloudWatch log subscription and dynamodb auto scaling support

    plugins:
      - serverless-scriptable-plugin
    
    custom:
      scriptHooks:
        after📦createDeploymentArtifacts: 
          - build/serverless/add-log-subscriptions.js
          - build/serverless/add-dynamodb-auto-scaling.js
    
    service: service-name
    package:
      artifact: .serverless/package.zip
    
  5. Suppress console output (Optional) You could control what to show during running commands, in case there are sensitive info in command or console output.

        custom:
          scriptHooks:
            showStdoutOutput: false # Default true. true: output stderr to console, false: output nothing
            showStderrOutput: false # Default true. true: output stderr to console, false: output nothing
            showCommands: false # Default true. true: show the command before execute, false: do not show commands
            ...
    

Hooks

The serverless lifecycle hooks are different to providers, here's a reference of AWS hooks: https://gist.github.com/HyperBrain/50d38027a8f57778d5b0f135d80ea406#file-lifecycle-cheat-sheet-md

Change Log

  • Version 0.8.0 and above

  • Version 0.7.1

    • [Feature] Fix vulnerability warning by remove unnecessary dev dependencies
  • Version 0.7.0

    • [Feature] Return promise object to let serverless to wait until script is finished
  • Version 0.6.0

    • [Feature] Supported execute multiple script/command for the same serverless event
  • Version 0.5.0

    • [Feature] Supported serverless variables in script/command
    • [Improvement] Integrated with codeclimate for code analysis and test coverage
  • Version 0.4.0

    • [Feature] Supported colored output in script/command
    • [Improvement] Integrated with travis for CI
  • Version 0.3.0

    • [Feature] Supported to execute any command for serverless event
  • Version 0.2.0

    • [Feature] Supported to execute javascript file for serverless event
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].