diff --git a/README.md b/README.md index 783843764..19bcf3042 100755 --- a/README.md +++ b/README.md @@ -21,4 +21,5 @@ npm install serverless -g * **AWS-Recommended Workflow:** Lambda versioning and aliasing support is automatically included. Every time you deploy a Lambda, it is versioned and aliased to the stage you targeted your deployment to. This allows large teams to work on one set of Lambdas per region without trampling eachout. * **Removed CloudFormation Support For Project Lambdas:** We no longer use CloudFormation to deploy your Lambdas. It is too slow and it is behind on features which we would like to support today. Our `s-function.json` resembles CF syntax, but is leaner and offers an abstraction layer which we will use to assist your workflow further in the near future. Lambda Function names are also much neater now. * **1 REST API Containing Your Project's Stages:** JAWS created a separate REST API on API Gateway for each of your Project stages. Now, your project just has one REST API and your Project's Stages are added as stages on that REST API. -* **Stage Variable Support:** Each stage in your API Gateway REST API uses an API Gateway stage variable to point to Lambdas aliased with the same stage name. By changing that variable, you can point all endpoints inyour REST API Stage to an entirely different set of aliased Lambdas. \ No newline at end of file +* **Stage Variable Support:** Each stage in your API Gateway REST API uses an API Gateway stage variable to point to Lambdas aliased with the same stage name. By changing that variable, you can point all endpoints inyour REST API Stage to an entirely different set of aliased Lambdas. +* **Plugin Architecture:** Every Action Serverless does is a Plugin. You can make your own plugins too to add "pre" and "post" hooks on Actions, create custom Actions, or replace an Action entirely. \ No newline at end of file