總想留下點東西,不負年華!
release
//all release
example
v6.10.3/node-v6.10.3-linux-x64.tar.xz
tar jxf node-v6.10.3-linux-x64.tar.xz && mv node-v6.10.3-linux-x64 node-v6 && mv node-v6 /usr/local/
vi /etc/profile ###配置全域性環境變數,真實的環境建議配置使用者級別的變數,防止不可寫
export node_home="/usr/local/node-v6"
export path=$node_home/bin:$path
export ld_library_path=$node_home/lib:$ld_library_path
source /etc/profile
#檢視版本
node -v
npm -v
//配置**
內網訪問外網資源
npm config set registry= //註冊npm
**使用者名稱和密碼
取消**
臨時使用
npm --registry install express
持久使用
npm config set registry
驗證npm config get registry
npm install forever -g
[root@vm_175_27_centos ~]# npm --help
usage: npm
where is one of:
access, adduser, bin, bugs, c, cache, completion, config,
ddp, dedupe, deprecate, dist-tag, docs, edit, explore, get,
help, help-search, i, init, install, install-test, it, link,
list, ln, login, logout, ls, outdated, owner, pack, ping,
prefix, prune, publish, rb, rebuild, repo, restart, root,
run, run-script, s, se, search, set, shrinkwrap, star,
stars, start, stop, t, tag, team, test, tst, un, uninstall,
unpublish, unstar, up, update, v, version, view, whoami
npm -h quick help on
npm -l display full usage info
npm help search for help on
npm help npm involved overview
specify configs in the ini-formatted file:
/root/.npmrc
or on the command line via: npm --key value
config info can be viewed via: npm help config
[email protected] /usr/local/node-v6/lib/node_modules/npm
[root@vm_175_27_centos ~]# npm config --help
npm config set
npm config get
npm config delete
npm config list
npm config edit
npm set
npm get
npm config ls -l // to show all defaults.
Nodejs 構建web應用
本篇的內容比較多.1 首先是從基本的nodejs服務方面講述前後端統一語言在web應用中的作用 2 然後講了web中基本的知識,從請求方法到路由 從查詢字串到cookie和session以及快取 從表單資料到上傳檔案 以及安全認證。雖然不是很詳細,但總體上有個引領的效果。3 後面著重介紹了路由的概念...
NodeJS環境搭建
1.nodejs安裝 node依賴於ssl,通過sudo apt get install libssl dev安裝。node需要python壞境支援gyp generate your project 以完成原始碼管理,所以需要安裝python,預設linux下自帶的。git clone git cd...
NodeJs環境搭建
一 在windows平台上安裝node.js及npm模組管理 2 建立d nodejs目錄,並將node.exe儲存在這個目錄中。並將 d nodejs 加入系統環境變數path中,便於在任意位置執行node應用。3 將npm源 解壓到d npmjs目錄中。在命令提示符視窗中執行下面的操作,完成np...