express
express copied to clipboard
⚡ Take existing Express.js apps and host them easily on cheap, auto-scaling, serverless infrastructure (AWS Lambda and AWS HTTP API).
The link to [serverless.com/components](https://serverless.com/components) ([Wayback Machine](https://web.archive.org/web/20210420123718/https://www.serverless.com/components/)) now redirects to the main framework page and there is zero mention of components on the website (aside from blog posts from 2+ years...
AWS now supports 10gb lambdas https://aws.amazon.com/about-aws/whats-new/2020/12/aws-lambda-supports-10gb-memory-6-vcpu-cores-lambda-functions/ And in 1mb increments https://aws.amazon.com/lambda/pricing/ So instead of checking whether the memory value is in one of the `- allow` options, we can just...
Upon deploying a stack with this component, I now get an error. The exact same deployment worked fine a couple of months ago. Command run: `sls deploy` Output: ``` serverless...
Lambda functions can support a 'memory' configuration of up to 10240 MB but it doesn't look like this component supports this. If you try to set the 'memory' to '10240'...
It doesn't look like the Express component supports the Serverless Framework **versionFunctions** flag (nor is it supported by plugins such as the serverless-prune-plugin) and so my Lambda console is filling...
Greetings and thanks for this awesome component. Quick question. How I could use this with TypeScript? I tried changing the input/src of the `serverless.yml` to the output of the compliled...
Amazon is rolling out Lambda states now, see: https://aws.amazon.com/blogs/compute/coming-soon-expansion-of-aws-lambda-states-to-all-functions/ This was interfering with our deployments, as the provisioning takes some time and because of that, the `updateLambdaCode` that is called...
Hi, I am trying to correctly boostrap the lambda so that it waits until the server is ready. I am using `apollo-server-express` to host a GraphQL endpoint. With an `app.ts`...
This was the root cause of [#60](https://github.com/serverless-components/express/issues/60).
Hello! I'm attempting to utilize Node 14 on AWS Lambda, but I can't seem to get the component to respect my settings. It looks like the settings might be able...