Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is the Meteor JS framework compatible with Google App Engine?

Would it be possible to build and deploy Meteor applications on Google App Engine or are these incompatible technologies?

I know, for example, that Node.js is not compatible with App Engine and Meteor seems similar to Node in some respects.

like image 365
SuperCopz Avatar asked Apr 11 '12 01:04

SuperCopz


1 Answers

Meteor creates Node.js applications. Google App Engine does not have a JavaScript runtime, but it does have (in beta as of December 2013), Managed VMs which can run Node.js.

Google Compute Engine (not App Engine) supports the MEAN stack (Mongo, Express, Angular, Node.js), so you can run Meteor on GCE.

Google App Engine screenshot


old answer

Meteor relies on node.js and as such will not run on GAE until GAE supports node.js, if ever.

like image 126
Alex Vidal Avatar answered Oct 21 '22 06:10

Alex Vidal