Skip to content

Tag: serverless frameworks

Serverless Framework Logo
Cloud Computing

Getting started with Serverless Framework

The Serverless Framework allows us to abstract away quite a bit of the complexity from setting up lambda functions and the necessary events to execute them, especially through the API gateway. In this blog post we look at how to set up a simple project to use the serverless framework.

February 15, 2022
Serverless Framework
Cloud Computing

Updating to the Latest Version of Serverless

The Serverless Framework is a free open source framework that allows us to easily build applications on cloud providers like AWS using serverless computing. As you may remember, it needs to be installed globally which means we need to do the update globally and we'll need to potentially update all of our projects for any breaking changes.

June 1, 2021
Serverless Framework Logo
Cloud Computing

Running Serverless Framework Functions Locally

Developing locally makes a lot more sense than deploying to a dev environment consistently because it helps save time, save some cloud costs, and avoids obvious embarrassment. :)

April 21, 2020
Cloud Computing

How to Resolve Serverless error: lambda is not a function

When trying to invoke any of your lambda functions if you are getting an error that says "lambda is not a function" the problem is likely that the handler is misspelled in the serverless.yml file OR you aren't exporting modules.exports.handler and are instead exporting something else.

January 15, 2019
Serverless Framework Logo
Cloud Computing

Setting CloudWatch Rentention Policies in Serverless

The serverless default for CloudWatch Logs is to keep the logs forever. CloudWatch Logs are pretty expensive to keep around indefinitely. In the serverless.yml file, we're able to set how long the cloudwatch logs are kept for. I recommend keeping them for at least 7 days but 30 days is probably more ideal.

December 4, 2018
What is Serverless Computing
Programming

What is Serverless Computing

In the ten years or so that I have been programming professionally, there’s been significant changes to the way we did things…

October 4, 2017
Serverless Framework
Programming

What is the Serverless Framework?

The Serverless Framework is a free open source framework that allows us to easily build applications on cloud providers like AWS using serverless computing. By utilizing Serverless development and IT operations teams are able to quickly build functions and the events that will trigger them.

July 4, 2017