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

后端 未结 5 1791
逝去的感伤
逝去的感伤 2020-12-24 08:19

I\'ve been following the latest developments with server-side JavaScript - especially Node.js - and wondering if there is any possibility of using such an approach to develo

5条回答
  •  余生分开走
    2020-12-24 08:58

    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.

提交回复
热议问题