Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List all aws-lambda pre-built libraries & modules for nodejs

Tags:

aws-lambda

aws documentation indicate that aws-sdk comes by default on all lambda runtimes (obviously) ... also, many post indicates that ImageMagick is also pre-built and ready to use, but this do not appears on the official documentation (or I didn't found it)

I was searching a lot but didn't found a list off all libraries /modules or extra functionalities included by dafault on Lambda so I do not need to build it by myself. do you know where i can find it?

like image 888
Cristian Sepulveda Avatar asked Oct 01 '17 15:10

Cristian Sepulveda


1 Answers

Updated Answer:

ImageMagick (the static binaries) indeed seems to be available on Lambda. I guess image resizing is a very common use case such that they decided to include it on Lambda. They should update that doc page to make it official.

You still have to include the node.js package for interfacing with ImageMagick in your package.json though.


Original Answer:

When in doubt, always use Amazon's official documentation.

Lambda Execution Environment and Available Libraries

I don't think ImageMagick is included by default.

like image 166
Noel Llevares Avatar answered Nov 28 '22 07:11

Noel Llevares