النشر دون خوادم
استكشفوا نشر تطبيقات NestJS على منصات دون خوادم مثل AWS Lambda أو Google Cloud Functions لتحقيق توسّع فعّال من حيث التكلفة.
النشر دون خوادم درس مجاني في NestJS Enterprise Backend APIs على CoddyKit. هذا هو الدرس 5 من أصل 6. يمكنك قراءة الدرس كاملاً أدناه مجاناً — ثم تمرن عليه مباشرة في المتصفح باستخدام محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7. هذا الدرس جزء من مسار التعلم في NestJS Enterprise Backend APIs، وتقدمك يتزامن عبر الويب وتطبيق CoddyKit. تتضمن دورة NestJS Enterprise Backend APIs 6 دروس في المجموع.
بعض أجزاء هذا الدرس لم تُترجم بعد وتظهر باللغة الإنجليزية.
Intro to Serverless Deployment
Welcome to serverless deployment! This strategy lets you build and run applications without managing servers.
Instead of provisioning VMs, you write code that runs in response to events, like an HTTP request.
The cloud provider (e.g., AWS, Google Cloud) handles all the server management for you.
Why Serverless for NestJS?
Deploying NestJS on serverless platforms offers compelling advantages, especially for APIs:
- Automatic Scaling: Your application scales instantly with demand, from zero to thousands of requests.
- Cost-Efficiency: You only pay for the compute time consumed by your code, not for idle servers.
- Reduced Operations: No server maintenance, patching, or scaling to worry about. Focus on your code!
Common Serverless Platforms
Several major cloud providers offer robust serverless computing services:
- AWS Lambda: The most popular choice, often used with API Gateway for HTTP endpoints.
- Google Cloud Functions: Google's offering, deeply integrated with the Google Cloud ecosystem.
- Azure Functions: Microsoft's solution for event-driven serverless applications.
We'll primarily focus on concepts applicable to AWS Lambda.
NestJS & Lambda: The Challenge
NestJS applications are typically long-running processes, constantly listening for requests. Serverless functions, however, are designed to be short-lived, executing only when triggered.
The challenge is to make NestJS's robust architecture fit into this 'function-as-a-service' model. We need a way to 'boot up' our NestJS app within the context of a single serverless invocation.
Adapting NestJS for Lambda
To run a NestJS app on AWS Lambda, we use an adapter. This adapter acts as a bridge, translating incoming Lambda events into a format NestJS understands (like an Express.js or Fastify request) and then translating NestJS's response back for Lambda.
Popular tools like @vendia/serverless-express (for Express) or @nestjs/platform-fastify with aws-lambda-fastify help achieve this.
Serverless Framework CLI
The Serverless Framework is a powerful CLI tool that simplifies deploying serverless applications to various providers.
It handles packaging your code, creating cloud resources (like Lambda functions and API Gateway endpoints), and managing deployments.
You can install it globally via npm:
npm install -g serverlessBasic `serverless.yml` Structure
The core of a Serverless Framework project is the serverless.yml file. This YAML configuration defines your service, provider, and functions.
Here's a simplified structure:
service: my-nestjs-api
provider:
name: aws
runtime: nodejs18.x
# ... other AWS configurations
functions:
api:
handler: dist/lambda.handler
events:
- http:
path: /{proxy+}
method: any
cors: trueThe NestJS Lambda Handler
This is the actual entry point for your Lambda function. It initializes your NestJS application and wraps it with an adapter.
The goal is to initialize NestJS only once (a 'warm start') to reduce latency on subsequent calls.
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import { ExpressAdapter } from '@nestjs/platform-express';
import * as express from 'express';
import * as serverlessExpress from '@vendia/serverless-express';
let cachedServer;
async function bootstrapServer() {
const expressApp = express();
const adapter = new ExpressAdapter(expressApp);
const app = await NestFactory.create(AppModule, adapter);
await app.init();
return serverlessExpress({ app: expressApp });
}
export const handler = async (event, context) => {
if (!cachedServer) {
cachedServer = await bootstrapServer();
}
return cachedServer(event, context);
};Deploying Your Serverless App
Once your serverless.yml and handler are configured, deploying your NestJS application is straightforward:
- Build: Compile your TypeScript code (e.g.,
npm run build). - Deploy: Run
serverless deployfrom your terminal. The CLI handles packaging and provisioning. - Test: The CLI will output your API Gateway endpoint, which you can use to test your deployed NestJS API.
Serverless Deployment Check
Which of the following are key benefits of deploying a NestJS API on a serverless platform like AWS Lambda?
Recap: Serverless NestJS
In this lesson, we explored how to deploy NestJS applications using serverless platforms like AWS Lambda.
You learned about the benefits (cost, scaling, reduced ops), the challenge of adapting NestJS for short-lived functions, and how the Serverless Framework and adapters help bridge this gap. This approach enables highly scalable and cost-efficient backend services.
الأسئلة الشائعة
هل درس «النشر دون خوادم» مجاني؟
نعم — نص درس «النشر دون خوادم» كامل متاح مجاناً هنا على الويب. لتمرينه بشكل تفاعلي (محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7) وفتح باقي دورة NestJS Enterprise Backend APIs، انتقل إلى CoddyKit PRO. تتضمن دورة NestJS Enterprise Backend APIs 6 دروس في المجموع.
ماذا ستتعلم في «النشر دون خوادم»؟
استكشفوا نشر تطبيقات NestJS على منصات دون خوادم مثل AWS Lambda أو Google Cloud Functions لتحقيق توسّع فعّال من حيث التكلفة. تتمرن على NestJS Enterprise Backend APIs مع أكواد عملية تشغلها مباشرة في المتصفح، ومدرس ذكاء اصطناعي متاح 24/7 يجيب على أسئلتك أثناء عملك.
هل أحتاج إلى خبرة سابقة لأبدأ NestJS Enterprise Backend APIs؟
لا تُشترط خبرة سابقة. NestJS Enterprise Backend APIs على CoddyKit منظم للمبتدئين حتى المتقدمين، لذا يمكنك البدء من هنا أو من البداية والتقدم بسرعتك الخاصة. هذا هو الدرس 5 من أصل 6.
كم من الوقت يستغرق درس «النشر دون خوادم»؟
معظم دروس CoddyKit تستغرق حوالي 5–10 دقائق. كل منها موجز وتفاعلي، لذا تحرز تقدماً مستمراً وتستأنف من حيث توقفت عبر الويب والتطبيق.
هل يمكنني كتابة وتشغيل أكواد في درس NestJS Enterprise Backend APIs هذا؟
نعم. كل درس في NestJS Enterprise Backend APIs يتضمن محرر أكواد مدمج، لذا تكتب وتشغل أكواداً حقيقية مباشرة في متصفحك وتحصل على تعليقات فورية من الذكاء الاصطناعي — بدون إعداد محلي.
جميع الدروس في هذه الدورة
- استراتيجيات التخزين المؤقت (Redis)
- مراقبة أداء قاعدة البيانات
- موازنة التحميل والوكلاء
- استراتيجيات تحسين الاستعلامات
- النشر دون خوادم
- توسيع نطاق مشروع Supabase