如何在Windows环境中的Node.js中编写第一个应用程序?

我已经从他们的网站下载Node.js在我的Windows XP操作系统。 我已经通过微软安装程序安装它。 我不知道如何编写我的第一个应用程序,在哪里保存它们以及如何在Windows中执行它们。 我有一个node.js命令提示符,但我不能使用它。 我search了很多,但只有linuxmac指令。 我没有find任何合适的tutorial或例子,我可以从头开始节点应用程序。

如果有人可以把一些documentationsteps或任何这样的教程,我可以得到这个帮助,这将是我的伟大。

正如Eric的这篇博客文章所描述的,在127.0.0.1:#port#上获取node.js服务器设置和响应请求是非常容易的。

真的很容易。 我只是做了所有的…比写这个文本更长。

  1. 下载适合操作系统的node.js 1 : http : //nodejs.org/

  2. 现在,在与您的node.exe相同的文件夹中创建一个.txt (纯文本)文件,并将其重命名为server.js

  3. 将该Javascript加入该文件:

     var http = require('http'); http.createserver(function (request, response) { console.log('request starting...'); response.writeHead(200, { 'Content-Type': 'text/html' }); var html = '<p>Hello World!</p>'; response.end(html, 'utf-8'); }).listen(8125); console.log('server running at http://127.0.0.1:8125/'); 
  4. 打开一个cmd.exe并将cd c:\path\to\the\node\executable打开cd c:\path\to\the\node\executable node.exe所在cd c:\path\to\the\node\executable

  5. 从那里运行:

     node server.js 

    你应该看到它说:

     server running at http://127.0.0.1:8125 
  6. 打开浏览器并在地址栏中输入http://127.0.0.1:8125/

    你应该看到它说:

     Hello World! 

而已。 这很容易。 谚语Hello World! 在15秒以内。 现在,如何让它解析一个Javascript文件,并返回输出,而不是简单的HTML …


1.注意,我得到了可执行文件node.exe ,在某个地方node.exe了一个文件夹,将可执行文件放在该文件夹中。 没有安装程序。 奇迹般有效。

下面是使用Windows环境和Visual Studio开发node.js应用程序的新方法> = 2012 https://nodejstools.codeplex.com/