examples icon indicating copy to clipboard operation
examples copied to clipboard

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.

Results 133 examples issues
Sort by recently updated
recently updated
newest added

Hey @eahefnawy, is it possible to add an example using [playwright](https://github.com/microsoft/playwright)? Cheers, Peter

Hello, My serverless.yml ```functions: hello: handler: handler.hello events: - http: path: hello method: get authorizer: authorizerFunc authorizerFunc: handler: handler.authorizerFunc ``` What I want is to set some value in `auth.js`...

Hi there ⊂◉‿◉つ This PR will add a practical example of how to setup and use serverless + babel + webpack

Hi team, i have followed the below stop for serverless using AWS. 1. **npm install -g serverless** 2. **sls offline start** 3. **sls deploy** Serverless Error --------------------------------------- AWS provider credentials...

Hi, I am new to Serverless and Node.js. I am trying to run the "_aws-node-fetch-file-and-store-in-s3_" example. I have not modified the code. Here is how I am invoking it. `serverless...

examples/aws-node-single-page-app-via-cloudfront/serverless.yml:52 - ie. line 52, there is: `OriginProtocolPolicy: https-only` This is exactly wrong - it should be `http-only`. Apart from many other reasons why people would use cloudfront instead of...

## Question / help needed I'm trying to get authorization working before connecting to websockets, which works, but I'm struggling to return an error message that isn't `500`. I've managed...

> The Serverless version (2.2.0) does not satisfy the "frameworkVersion" (>=1.1.0

I've cloned the `aws-node-typescript-apollo-lambda` example and I cannot get the playground to work. I get the following error. `Error: Mutation was defined in resolvers, but it's not an object` To...

Hi guys, I tried to use the following syntax to enforce parameter check by the api gateway to not check it in the code: https://www.serverless.com/framework/docs/providers/aws/events/apigateway/#request-schema-validators ![image](https://user-images.githubusercontent.com/24576710/84419283-ad9a8900-ac18-11ea-80aa-0641dfc87304.png) Api gateway **doesn't** return...