NodeJS Serverless Execution Models Explained | AWS Lambda, CloudFlare Workers, Deno Deploy Explained

preview_player
Показать описание

Timestamps
0:00 Teaser
0:13 Video Starts
0:40 Giveaway Alert!
1:00 Type of Architecture in Serverless Functions
2:44 AWS Lambda
4:12 CloudFlare Workers
6:53 Deno Deploy
9:21 Comparison
9:59 What’s good for you?
11:31 Conclusion
11:57 Outro

👉 Checkout codedamn on social:

If you found the video valuable, please leave a like and subscribe ❤️ It helps the channel grow and helps me pumping out more such content.

👋 About Me:
Hey! I'm Mehul Mohan, a CSE'21 graduate from BITS Pilani, Goa. I started coding early in life, at the age of 13 when I created my first blog on Blogger. I am listed in Google, Microsoft, Sony, eSet, etc. Hall of Fame for reporting vulnerabilities in their systems.

🍎 I am Apple's WWDC'19 Scholar - visited San Francisco and attended WWDC.

🚀 Currently working on my own startup - codedamn.

Connect with me:

🏷 Video Tags:
NodeJS Serverless Execution Models Explained
node js tutorial
nodejs beginners
what is nodejs
node js tutorial for beginners
server side
AWS Lambda, CloudFlare Workers, Deno Deploy Explained

Рекомендации по теме
Комментарии
Автор

Cloudflare workers run on the edge. They are distributed by default.

For cloudflare workers main usp is their ability to talk to cache and the workers kv. That makes it sort of a programmable gateway to your origin. As the workers run on edge, you could offload tasks like user authentication, mtls validation, session management, immediate data passing, generating signed urls etc.

As you can tap the cache, this lets us save responses for post requests(not possible in the main cdn) at the edge and use it as an entry point for users. I'd say, we should not look at it in the way we look at general nodejs environments. I had to learn it the hard way.

Durable objects looks very promising and it supports long lived persistent connections. But it has its own problems. If done correctly, that would be a game changer for many industrial and retail use cases. But we will have to see how it goes.

brgautam
Автор

Just OWSM. I was reading this term "ServerLess" everywhere nowadays and you made it pretty clear!! Thank you 🤘

sarthakduggal
Автор

Yo codedamn ! Don't stop at any point, you are like a light for me in the dark <3

fawadbros
Автор

You're doing great job to explain the things actual work parallel in different engines

hussnainjavd
Автор

I am new to full stack development but I don't anything about it but I like way of teaching and spreading information with free of cost 😍😍

pjagannadham
Автор

Videos from your channel are attracting me and making me know different things. Thank you!

pandabro
Автор

You are providing free full stack development course for free thank you bro

pjagannadham
Автор

Didn't know much about cloudflare workers. Good to learn about new stuff

sudeepdeysarker
Автор

Suggestion:
Try to divide the lambda function into DB-related and non-DB function.
Now for example
U can enqueue a message in SQS, dequeue it to a cloudflare worker and perform the non-DB component. Again enqueue the message to another SQS and u can deploy a microservice just for DB operations.
A bit complicated but it should work.

amanagarwal
Автор

Very Interesting to Watch & Learn something New Daily.. Thanks Mehul Sir 😊🙏🏻

Raj-izuz
Автор

So what’s the use case for cloud flare worker if it can’t connect to a database? That seems pointless to use if it can’t connect to anything. I’m guessing they force your hand to use a database as a service via http calls?

WebDevCody
Автор

Much needed video..
Thank u codedamn for the amazing content ✨

SubhanshuMG
Автор

Cloudflare workers seems very suitable for cases where you have to run some business logic before passing the event/request to some 3rd party api. Good stuff on your channel 👍

parthkumarbera
Автор

Really man your videos are Highly industry useful and must follow channel if you're a developer. 😍

SRPPixels
Автор

I wish to work with you when I acquire a skill. So much to learn from you!

melwin
Автор

I'm 2nd year engineering student I'm learning web development to
Put my first step to execute my start up Idea,

abhishekjoshi
Автор

Thank you so much for this, your videos are really awesome with great video quality and content too.
With help of your videos now I am able to build web projects.
Thanks a lot!!

Sonu-tgtg
Автор

I would love a shirt that is that nice looking!!!

mindy
Автор

Working with nextjs serverless” on vercel. Just moved project from express and digital ocean

dixztube
Автор

update: Cloudflare workers now support mogo db

OmNaidu