真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Node.js如何實現(xiàn)helloworld

這篇文章主要為大家展示了“Node.js如何實現(xiàn)hello world”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Node.js如何實現(xiàn)hello world”這篇文章吧。

創(chuàng)新互聯(lián)長期為1000+客戶提供的網(wǎng)站建設(shè)服務(wù),團隊從業(yè)經(jīng)驗10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為河南企業(yè)提供專業(yè)的網(wǎng)站制作、成都做網(wǎng)站河南網(wǎng)站改版等技術(shù)服務(wù)。擁有10年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。

首先下載node.js,然后解壓到E盤,改名為node,然后開始菜單輸入cmd,用cd命令切換到nodejs的解壓目錄:

Node.js如何實現(xiàn)hello world

***個例子:hello world。

在node目錄下建立hello.js文件,然后在里面輸入:

var sys = require("sys");  sys.puts("Hello world");

然后我們在命名臺中輸入命令node hello.js,就能看到命名臺輸出結(jié)果Hello world。

第二個例子:hello world2。

好了,這次我們試從游覽器中輸出hello world。在node目錄下建立http.js,然后輸入:

var sys = require("sys"),      http = require("http");  http.createServer(function(request, response) {      response.sendHeader(200, {"Content-Type": "text/html"});      response.write("Hello World!");      response.close();  }).listen(8080);  sys.puts("Server running at http://localhost:8080/");

然后我們在命名臺中輸入命令node http.js,在瀏覽器輸入http://localhost:8080/

Node.js如何實現(xiàn)hello world
Node.js如何實現(xiàn)hello world

第三個例子:hello world2。

node.js提供一個Buffer類用于轉(zhuǎn)換不同編碼的字符串。目前支持三種類型:'ascii','utf8'與'binary'。詳見這里

var Buffer = require('buffer').Buffer,  buf = new Buffer(256),  len = buf.write('\u00bd + \u00bc = \u00be', 0);  console.log(len + " bytes: " + buf.toString('utf8', 0, len));

第四個例子:hello world3。

//synopsis.js  //synopsis 摘要, 梗概,大綱  var http = require('http');     http.createServer(function (request, response) {    response.writeHead(200, {'Content-Type': 'text/plain'});    response.end('Hello World\n');  }).listen(8124);     console.log('Server running at http://127.0.0.1:8124/');

以上是“Node.js如何實現(xiàn)hello world”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


標題名稱:Node.js如何實現(xiàn)helloworld
文章源于:http://weahome.cn/article/gsjsdc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部