⚡️ NEW VIDEO: How to use versioning and aliases to deploy lambda functions? (/w API Gateway) kzbin.info/www/bejne/hXiwknhsaL6ae7c
@FaVeritas4 жыл бұрын
Thank you for making this video. Spent half my day trying to find a tutorial of how to do this!
@justinmeskan4410 Жыл бұрын
BRO, you R A Rockstar!! Great presentation. Thqk you
@hollyjo1618214 жыл бұрын
Thank you. Thank you. I have gotten stuck at this for awhile now. Thank you!
@shivanishivu16924 жыл бұрын
Thank you so much for this video. It's really time saver for a beginner. Love from BHARAT (India). Keep doing great work. Happy Coding !!
@Hackenbaker3 жыл бұрын
Man!! Great content, clear and fast!!! Thanks a lot.
@zachholub92104 жыл бұрын
This was a super well done and useful video. thanks so much for making it!
@zelaTVV2 жыл бұрын
Well explained, take a look at layer to upload your nodes modules. It will make your life easier.
@sonao111 Жыл бұрын
Hello, I have a test project made in pactumJS and I need these tests to run in a lambda, but every time I try to run the command 'npm run test' I get an error during the execution of the lambda in aws. Would you help me?
@sharanbiradar99334 жыл бұрын
Awesome!! Thank you so much ;-) Much needed one.
@anantgarg87256 ай бұрын
I owe you my life. thank you
@Giiven_Siisanda9 ай бұрын
Great video, well explained for a beginner..
@alexsoul2472 жыл бұрын
so, I lost you at 3:33 unfortunately. Your terminal shows "lambda-npm" - is this just a folder you are in? Sorry, I am super new to all that stuff, but it is soo interesting. Please help me to get past it...
@BiteSizeAcademy2 жыл бұрын
Yeah, 'lambda-npm' is an empty folder which we're in, at that point
@manshalkhatri9289 Жыл бұрын
Thanks man it was helpful
@thinq53392 жыл бұрын
How to run the terminal for lambda in windows I'm totally unaware. I don't know how to run that
@Diarybyvini3 жыл бұрын
Thanks a lot for the informative and to the point video, it was very helpful :)
@chriswalker1073 Жыл бұрын
Great video!! Just subscribed to the channel
@diegocisne Жыл бұрын
Great explanation, thanks a lot G
@shanmugam95202 жыл бұрын
Good share. Is lambda suitable for serving express, Node backend files in a mern stack application? If the website is expected to have thousands of hits to these small functions from react frontend hosted from s3. Thanks
@danielsquitt1515894 жыл бұрын
Hi, very nice and well explained channel. I’ve got an issue. I’ve tried to search on the web but I didn’t find any solution. The terminal doesn’t recognize the zip command. Could you help me?
@kensol123 Жыл бұрын
nice vid man
@danmantyla33154 жыл бұрын
can I just download the package from github as a zip? and then uplaod that to lambda
@BiteSizeAcademy4 жыл бұрын
The zip file that you upload to lambda has to contain a lambda handler function. You'll need to extract the zip of the package that you downloaded, require this package from your handler and then create a new archive that contains both the handler and the package, and then upload this new archive.
@sadekhossain9566 Жыл бұрын
Production build?
@maalejful2 жыл бұрын
Thanks, how what about ES module and the usage of import
@BiteSizeAcademy2 жыл бұрын
Check out this video kzbin.info/www/bejne/fJ7Rd6Sgd9BjqtE
@adamzerner52084 жыл бұрын
Is there a reason to upload package.json and package-lock.json to the lambda rather than just uploading node_modules?
@BiteSizeAcademy2 жыл бұрын
Not really, you can remove it. Ideally, you can also create a bundle instead of uploading all of node_modules: kzbin.info/www/bejne/fJ7Rd6Sgd9BjqtE
@0oOggGyyY4 жыл бұрын
Great video, thank you very much!
@matictv54184 жыл бұрын
thanks for very informative tutorial
@Hackenbaker2 жыл бұрын
Thanks, great content.
@inteligenciamilgrau Жыл бұрын
Thankkkkkkkkkkkkkkkkkkyou soooo muchhhhhhhhhhh!
@rebdawi20023 жыл бұрын
You are so cool brother!
@trevva233 жыл бұрын
Thank you so much!
@codigosimple19893 жыл бұрын
Do You have any paid course on spring or React? I would gladly pay, your content is really cool 😄
@alien-web10 ай бұрын
Really I love it dud
@mujtababasheer97734 жыл бұрын
very helpful. Thanks
@ET5620-q4s10 ай бұрын
how to find lambda-npm file location
@nghebao212 жыл бұрын
Good post
@ivanfranciscoj4 жыл бұрын
Really really, thank you
@imusamakhalid4 жыл бұрын
What if node_modules is very large?
@BiteSizeAcademy4 жыл бұрын
You can bundle your function using a bundler such as webpack or parcel, this way the bundle will contain only the code that is actually needed. This video shows how to create a bundle and deploy it: kzbin.info/www/bejne/oGG8ZpquhKdrqK8 (it uses typescript but will work exactly the same for js as well)
@imusamakhalid4 жыл бұрын
@@BiteSizeAcademy Thank you
@IWantSoundKnowledge2 жыл бұрын
Thanks much!
@AndrewRusinas3 жыл бұрын
What about layers?
@BiteSizeAcademy3 жыл бұрын
I made a video about layers: kzbin.info/www/bejne/n2KVeWeZiquomrc (if that's what you meant)