首先是安装,安装很简单,下载一个msi文件后一路下一步,没有难度
然后是第一个hello world测试文件
var http = require(‘http‘); http.createServer(function (request, response) { // 发送 HTTP 头部 // HTTP 状态值: 200 : OK // 内容类型: text/plain response.writeHead(200, {‘Content-Type‘: ‘text/plain‘}); // 发送响应数据 "Hello World" response.end(‘Hello World\n‘); }).listen(8888); // 终端打印如下信息 console.log(‘Server running at http://127.0.0.1:8888/‘);
然后cmd打开控制窗口,找到文件的根路径然后进行编译 ,例如这是我的文件的跟路径,所以就在控制器里面输入这个
C:\Program Files\nodejs>node server.js Server running at http://127.0.0.1:8888/
然后再浏览器输入
http://127.0.0.1:8888/
就能够打赢出 "Hello world"
时间: 2024-11-05 19:41:12