1. 程式人生 > >PCB 第一個node.js應用

PCB 第一個node.js應用

tex serve create 效果 run con 工作 resp UNC

一.Node安裝地址:

https://nodejs.org/zh-cn/

二.Node第一個應用實例

技術分享圖片

啟動webnode.js應用:

 node webnode.js

webnode.js代碼:

var http = require(‘http‘);

http.createServer(function (request, response) {

    // 發送 HTTP 頭部 
    // HTTP 狀態值: 200 : OK
    // 內容類型: text/plain
    response.writeHead(200, {‘Content-Type‘: ‘text/plain‘});
    
// 發送響應數據 response.end(‘Pcbren welcome your first node application\n‘); }).listen(8881); // 終端打印如下信息 console.log(‘Server running at http://127.0.0.1:8881/‘);

三.Node運行後效果

技術分享圖片

四.小結

也是對新技術的一個嘗試吧,就目前而言nodejs對目前工作上應用的技術目前用不上,

每種語言都有它適合的領域, 後續不斷探索,挖掘出可以有施展的項目上加應用。

PCB 第一個node.js應用