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

后端 未结 5 1782
逝去的感伤
逝去的感伤 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:57

    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.

提交回复
热议问题