Every time I need to know something, it seems like you'veve just finished releasing a crash course on it. You deserve way more subscribers! Thanks for the amazing content!
Simple and to the point. This course content is lighweight with core content for overall understanding of serverless architecture using Nodejs. Exactly what I was looking for and exactly where a person should start from. Kudos to your efforts this is a great course. Cheers!
very good content bro, I have been trying to understand lambda functions for long time but with this crash course you made every thing clear for me. thank you somuch..
You are doing a really great job. Your video is of the highest quality and great knowledge. Keep going and add more vedio on function and cloud formation.
Thank you very much. Very well structured and very easy to follow, big picture to details. One feedback: I increased the speed to 1.75x and that was the speed I was comfortable listening to. This reduced the time to 50min which might increase also your video to get more views, as making the decision to watch 1.5h to learn this was a hard choice to make at the beginning. But now watching this, I can say it was worth every minute.
Great content as always, just wanted to say if anyone wants to take all the services down they can do the "serverless remove" command in the same path of the serverless.yml file
There is. The thing that makes it "serverless" is that you aren't paying to have a server available all the time. You are instead paying to use a server as requests come in.
Very good video, watching it again after a long time :) One question - when you redeploy the infrastrucure, ARN name of the DynamoDB table doesn't change?
if this is targeting beginners, would be better to differentiate function from function execution context, function invocations, etc. you say in the "cold starts" section that the function doesn't exist. Well, it exists, but the execution context needs to be created and run the function.
Great course man! thank you!. few questions though. the serverless.yml schema, any course to know how to build it? it seems most of the structure its right there.... What about authentication?
Hey I have a question about passing the "completed" property. Since it wasn't filtered / checked isn't it like some kind of security issue? Or does aws sanitize the props by itself?
I have a question, If one of the con's of serverless like you mentioned is that it cannot support long running process like uploading a video, is that not a feature netflix should be worried about? since they are in the business of Video streaming
i was able to follow the course, up to the section that you wrote serverless deploy -v in vs code terminal, it doesn't do the same thing, instead showed me some info about framework core, plugin, and sdk, any idea why?
Deployment was done twice, first to create TodoTable in DynamoDB, second when iamRoleStatements was declared to access TodoTable (which required mentioning it's ARN). Can this be done in one single step? (If we don't have ARN beforehand)?
thank you for this course, but i have question about IAM, Did i create IAM role for all My lambda functions based on it need? AND how manage all keys in AWS CLI
Serverless is just technical mumbo jumbo. There is of course still a server involved with the API Gateway as well as the serverless functions themselves! They gotta be stored somehow. I look at serverless as just meaning you don’t have to worry about servers; that’s not to say they aren’t still involved. All you gotta worry about though is building your lambda, deploying it, and setting up a gateway route to the lambda.
I don't know anything about serverless but crash course help me to clear the concept hey Laith Harb can you make a video on a simple MERN application which has authentication how make it serverless and add lambda function I really want to see to because there is no tutorial in the youtube on this concept please make an video on this
hello so i watch your video, but I noticed, I don't get any tables created in my dynamodb , as in the put and promise didn't work for me, I don't know why... could you help
When i use serverless deploy -v to deploy its literally doing nothing, just gives me framework core, plugin and sdk versions. AND SLS deploy-v keeps on asking for bunch of path params, i enter and it keeps on asking further.This is my first time doing this ,please help!
Engaging stuff! If it resonates, the book I'd tip you off to will astonish. "AWS Unleashed: Mastering Amazon Web Services for Software Engineers" by Harrison Quill
Pay-per-use ≠ Cheap ... I think that at the end of the day you spend way less if you have a server, rather than paying for each request (i.e. a service can receive millions of requests in a few minutes). It would be interesting to have some real-world data, where we compare the same website running on servers vs Lambda.
I definitely agree with you, but Lambdas invocation rate can always be limited through the API Gateway, although it may not provide that much help in the case of a determined malicious actor.
"Thousands of request per hour".... You can easily achieve that even with a single VM. I think that scaling starts to be interesting when you have at least "Thousands of request per *second*".
Every time I need to know something, it seems like you'veve just finished releasing a crash course on it. You deserve way more subscribers! Thanks for the amazing content!
Thank you, you are very kind ☺
This is the best video on Serverless Framework. Never stop making videos
Simple and to the point. This course content is lighweight with core content for overall understanding of serverless architecture using Nodejs. Exactly what I was looking for and exactly where a person should start from. Kudos to your efforts this is a great course. Cheers!
Great tutorial. Nice that you kept the video running as it gives a real world view of the dev experience.
Man…. Your tutorial was AMAZING!!! everything I needed to create and deploy my first serverless API. Kodos to you!! Wow!!
This was exceptionally well done. Thank you!
Thankyou thankyou thankyou sooo much for this really needed this 🔥
very good content bro, I have been trying to understand lambda functions for long time but with this crash course you made every thing clear for me. thank you somuch..
Great presentation and content. Very easy to understand the concept. Thank you so much 🙂
Very high quality content. Keep up the good work, I'm sure you'll make it big.
1:05:46,
You can use AWS Lambda console to debug. It gives detailed log including which line is the problematic.
This is simply beautiful to watch.
You are doing a really great job. Your video is of the highest quality and great knowledge. Keep going and add more vedio on function and cloud formation.
Thank you very much. Very well structured and very easy to follow, big picture to details. One feedback: I increased the speed to 1.75x and that was the speed I was comfortable listening to. This reduced the time to 50min which might increase also your video to get more views, as making the decision to watch 1.5h to learn this was a hard choice to make at the beginning. But now watching this, I can say it was worth every minute.
very good video, I can the overall concept after watching this. Thank you
Thanks for this course. Beautiful explanation!
Thank you! The speed at which you speak is very good to who learning english
That was really great, thanks Laith
Thank you for this video, so much knowledge in one video 🤗🤗🤗🤗
Much Love for this great content
Great content as always, just wanted to say if anyone wants to take all the services down they can do the "serverless remove" command in the same path of the serverless.yml file
Thanks mate I was curious.
Very clear explanation. Thanks for sharing your knowledge. Keep it up :)
It's really cool that your content is always helpful and easy to grasp. Thanks a lot!
Tysm.. learnt tons of new things 😀
This should have been the first video I saw on serverless
Thanks for the course, it is amazing and well explained. Good and high quality content.
Very good content...Excellent!!
Great video. Thanks.
really good content you deserve more views and subscribers :)
Perfect course, thank you very much.
Very cool info ❤ tnx!
must mention in title or description the lang used for writing Lambda handler. 52:30
4:33 Surely there's a server in-between though? Surely there must be a server doing the listening and creating those functions on the fly?
There is. The thing that makes it "serverless" is that you aren't paying to have a server available all the time. You are instead paying to use a server as requests come in.
@@ryanhutchison9838 And then you encounter cold starts!
Thank you so much 💓
Thank you very much, it was a good crash course!
nice video man, thanks.
Thank you! Great man
Thanks! I'm having to learn this for my new job.
Thank you very much, God bless you
Great Content !
Great content.. Thank you very much. Watch in 1.5x speed.
very nice thanks!
Why you've opt-out from the Dashboard at 32:15?
Thank you!
Very good video, watching it again after a long time :) One question - when you redeploy the infrastrucure, ARN name of the DynamoDB table doesn't change?
Great video
if this is targeting beginners, would be better to differentiate function from function execution context, function invocations, etc. you say in the "cold starts" section that the function doesn't exist. Well, it exists, but the execution context needs to be created and run the function.
you're an amazing teacher, do you have paid courses?
Great vid! I think inquire is not the word you were looking for though. Maybe amass or accumulate?
any ai or devops bootcamp ? i'm interested i love your courses!
Great tutorial any chance you can expand with queryStringParameters?
Great course man! thank you!. few questions though. the serverless.yml schema, any course to know how to build it? it seems most of the structure its right there.... What about authentication?
This is an extremely well detailed run down. Do you have something similar for docker?
thanks
Hi. Thanks for the video. Well done. My question: How long can it take for a "cold start" to spin up?
Thoughts of a course on AWS Amplify maybe?
Hey I have a question about passing the "completed" property. Since it wasn't filtered / checked isn't it like some kind of security issue? Or does aws sanitize the props by itself?
Would be fullfilled
if you add lambda fn for DeleteTodo too
Thanks :)
Maybe Terraform next?
Maybe once I learn it haha
Hey, thank you by this course, very useful. Is a way to share the code for the complete project, thank you.
I have a question, If one of the con's of serverless like you mentioned is that it cannot support long running process like uploading a video, is that not a feature netflix should be worried about? since they are in the business of Video streaming
i was able to follow the course, up to the section that you wrote serverless deploy -v in vs code terminal, it doesn't do the same thing, instead showed me some info about framework core, plugin, and sdk, any idea why?
please make video on how to manage a server for startup.
maybe on digital ocean with node express API
Deployment was done twice, first to create TodoTable in DynamoDB, second when iamRoleStatements was declared to access TodoTable (which required mentioning it's ARN). Can this be done in one single step? (If we don't have ARN beforehand)?
thank you for this course, but i have question about IAM, Did i create IAM role for all My lambda functions based on it need? AND how manage all keys in AWS CLI
Is this approach feasible for multiple developer?
Is it possible to deploy a lambda function in 3 defference locations?
isn't there a server listening to those HTTP requests between the client and the lambda functions? so is it really serverless?
Serverless is just technical mumbo jumbo. There is of course still a server involved with the API Gateway as well as the serverless functions themselves! They gotta be stored somehow.
I look at serverless as just meaning you don’t have to worry about servers; that’s not to say they aren’t still involved. All you gotta worry about though is building your lambda, deploying it, and setting up a gateway route to the lambda.
I don't know anything about serverless but crash course help me to clear the concept hey Laith Harb can you make a video on a simple MERN application which has authentication how make it serverless and add lambda function I really want to see to because there is no tutorial in the youtube on this concept please make an video on this
@13:50 I didn't know that these wending machines are connected to internet.
IoT 💥
hello so i watch your video, but I noticed, I don't get any tables created in my dynamodb , as in the put and promise didn't work for me, I don't know why... could you help
When i use serverless deploy -v to deploy its literally doing nothing, just gives me framework core, plugin and sdk versions. AND SLS deploy-v keeps on asking for bunch of path params, i enter and it keeps on asking further.This is my first time doing this ,please help!
Hello sir , please make vidoe that how to insert csv data to dynamodb in serverless framework using lambad in nodejs
checkpoint: 44:06
What if they did not give me the option to choose REST API? how do you go about that?
choose http api
also in sls deploy the '-v' is no longer supported, use --verbose
any link to repo?
Hey Buddy, When I try to run serverless command in my terminal I do not AWS node js rest API. I got AWS node js http. So, you know how I can get this.
I got the same. Choose the http one, it still works more or less the same.
Engaging stuff! If it resonates, the book I'd tip you off to will astonish. "AWS Unleashed: Mastering Amazon Web Services for Software Engineers" by Harrison Quill
Pay-per-use ≠ Cheap ... I think that at the end of the day you spend way less if you have a server, rather than paying for each request (i.e. a service can receive millions of requests in a few minutes). It would be interesting to have some real-world data, where we compare the same website running on servers vs Lambda.
Yes. If unfortunately u have a ddos attack then, it might cost you a fortune
@@sathvikreddy5799 Lol
I definitely agree with you, but Lambdas invocation rate can always be limited through the API Gateway, although it may not provide that much help in the case of a determined malicious actor.
git repo?
"Thousands of request per hour".... You can easily achieve that even with a single VM. I think that scaling starts to be interesting when you have at least "Thousands of request per *second*".
Please explain it simple… thank you
i didn't like how there is no local test before deploying
You should explain each step a bit more. In many times in the video you skip parts or just assume that we know how to handle the aws website
Share the repository man, that's the essential part
Lol server still exists, it is listening for your http requests and run functions you want, it is just totally on AWS side.
Hey dude, what you are providing is great content but calm down a bit
rip bro never made that yaml crash course.
very low quality PPT, you need to learn how to do ppt , how to do presentation first