Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deploying Meteor app on AWS Lambda

Could one expect an easy process in deploying a Meteor app from the local development machine to AWS Lambda? and would it work fine?

Since AWS Lambda requires a stateless code, and Meteor is a stateful code, does that mean a Meteor app can not be deployed one AWS Lambda?

Is there a benifit from Lambda running a Meteor App?
Thanks

like image 992
Fred J. Avatar asked Nov 09 '22 09:11

Fred J.


1 Answers

Yes, it is possible, but probably not a great fit. The folks here tried it and recommend aws elastic beanstalk instead.

I know folks who have had success with serverless + apollo server, not quite the same, but Meteor is moving in the direction of apollo these days...

like image 200
chmac Avatar answered Nov 15 '22 06:11

chmac