查看node 版本
[code]node -v
建立第一個nodejs 程式
[code]helloWorld.js console.log("Hello World");
node
[code]> console.log('hello');
[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端口')
以上就是Node.js 初試啼聲的內容,更多相關內容請關注PHPcn網絡(www.php.cn)!