简体   繁体   中英

Is it possible to develop a Google App Engine web app using Node.js or some other server side JavaScript approach?

我一直在关注服务器端JavaScript的最新发展 - 尤其是Node.js - 并想知道是否有可能使用这种方法来开发Google App Engine Web应用程序 - 与Python或Java分开或结合使用?

node.js uses an event-loop model which is not really a good fit with the current App Engine design.

However, there are several projects that bring JavaScript to App Engine. Check out App Engine issue 35 to read about some of the solutions. The highlights are: Rhino , Rhino For Webapps , if you like Python check out AppengineJS . I have also heard that RingoJS might be worth looking into.

Also you might want to check out ApeJS. A little framework I wrote similar to AppengineJS but more minimalist.

http://lmatteis.github.com/apejs/

Tornado can run on app engine and is similar to node.js but using python, and has a nice yield approach too. But there are limitations with tornado's use on app engine that might defeat the object of using it for your project. See tornado on github for more info I use both but node.js with connect middelware and express.js to make node easier to use for simple web apps.

Now the best option is to use Google Compute Engine and Datastore > link here

You can use Google Compute Engine to host your node.js app and use google-api-nodejs-client to connect to the datastore:

  1. You need to create a project in Google API Console , and activate Compute Engine service for it
  2. You have to enable Google Cloud Datastore API (see link above)
  3. You need to set your dataset-id (same identifier as your Google Cloud Project ID).
  4. You need to be connected to a Compute Engine instance with both the datastore and userinfo.email scopes (node.js support for certificate-based service accounts is not yet implemented).
  5. You need a working node.js environment in your Compute Engine machine.
  6. npm install google-api-nodejs-client in your administration command-line tool

And you should be ready to go

While not the same as pure app engine (eg. manual scaling and currently in alpha status), this is now possible using Appengine Managed VMs .

See:

They also announced a Node.JS library for working with the google cloud platform .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM