Windows Azure 中的 Node Js
我想探索在 windows azure 和 node.js 上创建一个有用的网站,
我一直在阅读,到目前为止,我得到了一个在 windows azure 辅助角色上运行基本节点的非常简单的示例 - http://ntotten.com/2011/08/nodejs-on-windows-azure/
现在,我想做的是建立一个基于框架的网站(比如express - http://expressjs.com/)
我怎样才能做到这一点?有什么指点吗?
卡皮尔
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Windows azure 有一个很好的设置 Nodejs 的指南:
https://www.windowsazure。 com/en-us/develop/nodejs/tutorials/create-a-website-(mac)/
如果您创建一个使用express的本地nodejs服务器,所需的库将通过node_modules文件夹上传。所以只需用 git 将其推送到云端即可:)
Windows azure has a nice guide for setting up nodejs:
https://www.windowsazure.com/en-us/develop/nodejs/tutorials/create-a-website-(mac)/
if you create a local nodejs server that uses express, the needed libraries will be uploaded via the node_modules folder. so its just a matter of pushing it to the cloud with git :)
Nathan Totten使用的方法依赖于在Windows中运行的新node.exe,没有cygwin。我认为继续前进这将是要走的路,但现在我一直在使用“smarx角色”作为我的节点内容:
http://smarxrole.codeplex.com/
我想使用的许多 npm 软件包仍然需要 Node 4.x,而 Node.exe 版本中不提供该版本。 smarx 角色在 cygwin 之外运行节点,并具有 git 和 npm 支持。如果您想使用 node.exe 来实现此功能,您可能需要将 npm 二进制文件与 node.exe 一起打包在 zip 文件中,并包含 package.json 和您的依赖项。我会尝试举一个例子。
祝你好运!
The method Nathan Totten uses relies on the new node.exe that runs in windows, without cygwin. I think moving forward this will be the way to go, but for now I've been using the 'smarx role' for my node stuff:
http://smarxrole.codeplex.com/
A lot of the npm packages I want to use still require node 4.x, which isn't available in a node.exe release. The smarx role runs node out of cygwin, and has git and npm support. If you want to get this working with node.exe, you likely will need to package the npm binaries along with node.exe in a zip file, and include a package.json with your dependencies. I'll try to come up with an example.
Good luck!