node基礎
簡概:Node.js 就是運行在服務端的 JavaScript琉预。運行的核心是Google的V8引擎
- 安裝:
node中文網(wǎng) - 查看版本:
node -v
- 創(chuàng)建一個js程序 hello.js輸入
console.log("hello")
然后在終端執(zhí)行node hello.js
- 創(chuàng)建應用:一個node應用主要由3個部分組成
- node.js的模塊 這部分用require導入
- 創(chuàng)建服務器:服務器可以監(jiān)聽客戶端的請求顷蟆,類似于 Apache 、Nginx 等 HTTP 服務器衰絮。
- 接收請求與響應請求
服務器很容易創(chuàng)建肴裙,客戶端可以使用瀏覽器或終端發(fā)送 HTTP 請求璃俗,服務器接收請求后返回響應數(shù)據(jù)
第一個應用
touch app.js
- 打開app.js輸入如下代碼
//1.導入http模塊
var http = require("http")
//2.創(chuàng)建服務,返回一個服務對象并且監(jiān)聽8888端口死讹!
//3.在服務里面創(chuàng)建回調(diào)函數(shù),接受請求和相應
http.createServer(function (request, response) {
// 發(fā)送 HTTP 頭部
// HTTP 狀態(tài)值: 200 : OK
// 內(nèi)容類型: text/plain
response.writeHead(200, {'Content-Type': 'text/plain'});
// 發(fā)送響應數(shù)據(jù) "Hello World"
response.end('Hello World\n');
}).listen(8888);
// 終端打印如下信息
console.log('Server running at http://127.0.0.1:8888/');
我們在終端執(zhí)行node app.js
然后在localhost:8888上可以看到返回的數(shù)據(jù)
NPM
npm是隨同NodeJS一起安裝的包管理工具 npm -v
查看版本
- 升級
sudo npm install npm -g
注釋:當執(zhí)行npm install后夯膀,會在項目中產(chǎn)生package.json以及相對應的node_modules文件诗充,這個是npm管理的文件
- 和諧外網(wǎng)用淘寶鏡像(cnpm)
npm install -g cnpm --registry=https://registry.npm.taobao.org
- -g全局安裝和本地安裝區(qū)別:本地安裝在項目的node_modules里面 ,全局安裝在/usr/local 下或者你 node 的安裝目錄诱建!
- 其他命令:
npm list
全局安裝了哪些npm list -g
模塊版本npm list grunt
- 錯誤:
npm err! Error: connect ECONNREFUSED 127.0.0.1:8087
解決:npm config set proxy null