From 91835b689d765313837a3a60d175e0fd61adc912 Mon Sep 17 00:00:00 2001 From: Mikael Puittinen Date: Sat, 9 Apr 2016 15:11:12 +0300 Subject: [PATCH 1/2] Add serverless-mocha-plugin to README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8774323a0..cc1e9b354 100755 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ Serverless Projects are shareable and installable. You can publish them to npm * [serverless-starter](https://github.com/serverless/serverless-starter) - A simple boilerplate for new projects with a few architectural options. * [serverless-graphql-blog](https://github.com/serverless/serverless-graphql-blog) - A blog boilerplate that leverages GraphQL in front of DynamoDB to offer a minimal REST API featuring only 1 endpoint. * [serverless-authentication-boilerplate](https://github.com/laardee/serverless-authentication-boilerplate) - A generic authentication boilerplate for Serverless framework - + ## Plugins Serverless is composed of Plugins. A group of default Plugins ship with the Framework, and here are some others you can add to improve/help your workflow: * [Meta Sync](https://github.com/serverless/serverless-meta-sync) - Securely sync your the variables in your project's `_meta/variables` across your team. @@ -96,6 +96,7 @@ Serverless is composed of Plugins. A group of default Plugins ship with the Fra * [SNS Subscribe](https://github.com/martinlindenberg/serverless-plugin-sns) - This plugin easily subscribes your lambda functions to SNS notifications. * [JSHint](https://github.com/joostfarla/serverless-jshint-plugin) - Detect errors and potential problems in your Lambda functions. * [ESLint](https://github.com/nishantjain91/serverless-eslint-plugin) - Detect errors and potential problems in your Lambda functions using eslint. +* [Mocha](https://github.com/SC5/serverless-mocha-plugin) - Enable test driven development by creating test cases when creating new functions ## Contributing We love our contributors! If you'd like to contribute to the project, feel free to submit a PR. But please keep in mind the following guidelines: From 7dd42620a54bdd4ccef37cd8c4176b417e1a9d72 Mon Sep 17 00:00:00 2001 From: Mikael Puittinen Date: Sat, 9 Apr 2016 15:13:32 +0300 Subject: [PATCH 2/2] Add sc5-serverless-boilerplate to README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cc1e9b354..56289f764 100755 --- a/README.md +++ b/README.md @@ -77,6 +77,7 @@ Serverless Projects are shareable and installable. You can publish them to npm * [serverless-starter](https://github.com/serverless/serverless-starter) - A simple boilerplate for new projects with a few architectural options. * [serverless-graphql-blog](https://github.com/serverless/serverless-graphql-blog) - A blog boilerplate that leverages GraphQL in front of DynamoDB to offer a minimal REST API featuring only 1 endpoint. * [serverless-authentication-boilerplate](https://github.com/laardee/serverless-authentication-boilerplate) - A generic authentication boilerplate for Serverless framework +* [sc5-serverless-boilerplate](https://github.com/SC5/sc5-serverless-boilerplate) - A boilerplate for test driven development of REST endpoints ## Plugins Serverless is composed of Plugins. A group of default Plugins ship with the Framework, and here are some others you can add to improve/help your workflow: