0Pricing
Serverless AWS Lambda Development · Ders

Sunucusuz Framework’e Giriş

Birden fazla sağlayıcıda sunucusuz uygulamaların dağıtımını ve yönetimini kolaylaştıran, buluttan bağımsız bir araç olan Sunucusuz Framework’ü tanıyın

Sunucusuz Framework’e Giriş, CoddyKit'te ücretsiz bir Serverless AWS Lambda Development dersidir. Bu, 4 dersinin 2. dersidir. Aşağıdan dersin tamamını ücretsiz okuyabilir, sonra tarayıcıda yerleşik kod editörü ve 7/24 yapay zeka koçu ile uygulamalı olarak pratik yapabilirsin. Bu, Serverless AWS Lambda Development öğrenme yolunun bir parçasıdır ve ilerlemeniz web ve CoddyKit uygulaması arasında senkronize olur. Serverless AWS Lambda Development kursu toplamda 4 dersten oluşur.

Bu dersin bazı bölümleri henüz çevrilmemiş olup İngilizce olarak gösterilmektedir.

Intro to Serverless Framework

Welcome! In this lesson, we'll get acquainted with the Serverless Framework, a powerful command-line interface (CLI) tool.

It helps you build, deploy, and manage serverless applications across different cloud providers, including AWS Lambda.

Why Use Serverless Framework?

The Serverless Framework simplifies serverless development significantly. Here's why it's popular:

  • Cloud-Agnostic: Works with AWS, Azure, Google Cloud, and more.
  • Simplified Deployment: Automates the creation of cloud resources needed for your functions.
  • Consistency: Provides a standardized way to define and manage your serverless applications.
  • Focus on Code: Lets you concentrate on writing your application logic, not infrastructure setup.

Core Concepts: Services & Functions

Let's understand some key terms:

  • Service: Your project. It's a collection of related functions, events, and resources. Defined in a serverless.yml file.
  • Function: A single Lambda function (or similar compute unit in other clouds). It's your actual code.
  • Event: What triggers your function. Examples include HTTP requests, S3 uploads, or database changes.

Installing the Serverless CLI

First, you'll need Node.js and npm installed on your machine. Then, you can install the Serverless Framework CLI globally using npm:

npm install -g serverless

Creating Your First Service

Once installed, you can create a new serverless service using the serverless create command. You'll specify a template for your desired cloud provider and runtime.

For an AWS Node.js service, you might use:

serverless create --template aws-nodejs --path my-first-service

Understanding serverless.yml

The core of your Serverless Framework project is the serverless.yml file. This YAML file defines your service's configuration, including provider, functions, and events.

Here's a basic structure:

service: my-first-service
frameworkVersion: '3'

provider:
  name: aws
  runtime: nodejs18.x

functions:
  hello:
    handler: handler.hello

Defining a Lambda Function & Event

In serverless.yml, you define your Lambda functions and the events that trigger them. For example, to make our hello function accessible via an HTTP API endpoint:

service: my-first-service
frameworkVersion: '3'

provider:
  name: aws
  runtime: nodejs18.x

functions:
  hello:
    handler: handler.hello
    events:
      - httpApi:
          path: /hello
          method: get

Writing the Handler Code

Now, let's look at the actual Node.js code for our hello function, typically located in handler.js. This code will be executed when the HTTP API event triggers it.

Try running this example:

'use strict';

module.exports.hello = async (event) => {
  return {
    statusCode: 200,
    body: JSON.stringify(
      {
        message: 'Hello from Serverless Framework!',
        input: event,
      },
      null,
      2
    ),
  };
};

Deploying Your Service

Once your serverless.yml and handler code are ready, deploying your serverless application to AWS is as simple as running a single command:

The framework will package your code, create the necessary AWS resources (Lambda function, API Gateway endpoint, IAM roles), and deploy them.

serverless deploy

Quick Check: Serverless Concepts

What is the primary purpose of the serverless.yml file in a Serverless Framework project?

Recap: Serverless Framework Intro

Great job! In this lesson, you've been introduced to the Serverless Framework. You learned:

  • What the Serverless Framework is and why it's useful.
  • Key concepts like services, functions, and events.
  • How to install the CLI and create a new service.
  • The role of serverless.yml in defining your application.
  • How to write a simple Lambda handler and deploy your service.

Next up, we'll dive deeper into more advanced deployment strategies!

Sıkça Sorulan Sorular

“Sunucusuz Framework’e Giriş” dersi ücretsiz mi?

Evet — “Sunucusuz Framework’e Giriş” dersin tüm metni burada web'de ücretsiz olarak okunabilir. Etkileşimli olarak pratik yapmak (yerleşik kod editörü ve 7/24 yapay zeka koçu) ve Serverless AWS Lambda Development kursunun geri kalanını açmak için CoddyKit PRO'ya yükselt. Serverless AWS Lambda Development kursu toplamda 4 dersten oluşur.

“Sunucusuz Framework’e Giriş” dersinde ne öğreneceğim?

Birden fazla sağlayıcıda sunucusuz uygulamaların dağıtımını ve yönetimini kolaylaştıran, buluttan bağımsız bir araç olan Sunucusuz Framework’ü tanıyın Serverless AWS Lambda Development ile uygulamalı kodu tarayıcıda doğrudan çalıştırarak pratik yaparsın ve 7/24 yapay zeka koçu dersi çalışırken sorularını yanıtlar.

Serverless AWS Lambda Development öğrenmeye başlamak için deneyim gerekli mi?

Önceden deneyim gerekmez. CoddyKit'te Serverless AWS Lambda Development, başlangıçtan ileri seviyeye kadar yapılandırıldığı için buradan başlayabilir veya başından başlayıp kendi hızında ilerleme yapabilirsin. Bu, 4 dersinin 2. dersidir.

“Sunucusuz Framework’e Giriş” dersi ne kadar sürer?

Çoğu CoddyKit dersi yaklaşık 5–10 dakika sürer. Her biri kısa ve etkileşimli olduğu için sabit ilerleme yaparsın ve web ile uygulama arasında tam olarak bıraktığın yerden devam edebilirsin.

Bu Serverless AWS Lambda Development dersinde kod yazıp çalıştırabilir miyim?

Evet. Her Serverless AWS Lambda Development dersi yerleşik bir kod editörü içerir, bu sayede tarayıcıda gerçek kod yazıp çalıştırabilir ve anlık yapay zeka geri bildirimi alırsın — yerel kurulum gerekli değildir.

Bu kursun tüm dersleri

  1. AWS Sunucusuz Uygulama Modeli (SAM)
  2. Sunucusuz Framework’e Giriş
  3. Sunucusuz Uygulamalar İçin CI/CD
  4. SAM CLI ile Yerel Test
← Serverless AWS Lambda Development Sayfasına Dön