欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

Node.js 初试啼声

程序员文章站 2022-04-09 22:44:24
...
查看 node 版本
[code]node -v

创建第一个 nodejs 程序

[code]helloWorld.js
console.log("Hello World");

运行时,文件名大小写不限

交互模式:

在命令行输入:
node
[code]> console.log('hello');

创建第一个应用

步骤:

一、用require引入模块HTTP

二、创建服务器 http.createServer()

三、接受和响应请求

server.js
[code]var http = require('http');

http.createServer(function (request, response) {
    // 发送 HTTP 头部
    // 状态码 200
    // 内容类型 text/plain
    response.writeHead(200, { 'Content-Type' : 'text/plain'});

    // 发送响应数据---浏览器输出
    response.end('Hello World');
}).listen(8888);    // 监听8888端口
// 终端输出
console.log('服务器监听8888端口')

终端运行:

[code]node server.js

浏览器运行:

[code]http://localhost:8888/server.js

Node.js 初试啼声

以上就是Node.js 初试啼声的内容,更多相关内容请关注PHP中文网(www.php.cn)!