Windows下搭建NodeJS綠色版開發環境
06-18
原創 2017年01月06日 18:14:30
1
2
3
4
5
6
1
開發背景
博客一直用的是Jekyll, 突然想玩玩NodeJS和Hexo, 於是就試著搭建一下
綠色環境, 基於Window8, 不需要管理員許可權
NodeJS安裝主要就是本體和NPM
當前版本:
node -vv6.9.4npm -v4.1.1
NodeJSInstallation
官網直接下載最新Node.exe就是
NPM Installation- Download the latest npm release from GitHub ( https://github.com/npm/npm/releases )
- Create folders
c:
and
odejs
ode_modulesc:
odejs
ode_modules
pm - Unzip the
downloaded zip
file inc:
odejs
ode_modules
pm folder - Copy
npm
andnpm.cmd
files fromc:
to
odejs
ode_modules
pminc:
folder
odejs
Once setup is done, it can be used to install/uninstall packages locally or globally. For more information on usingnpm
visithttps://docs.npmjs.com/.
As the final step you can add node』s folder pathc:
to the
odejspath
environment variable so that you don』t have to specify full path when runningnode.exe
andnpm
at command prompt.
淘寶鏡像
直接到他們網站查看用法吧: https://npm.taobao.org/
環境變數cmd裡面每次將NodeJS
目錄當做path
就行
SET PATH=C:UsersxxxxDesktopNodeJS;%PATH%
然後Node
和NPM
命令都可以直接使用了
注意每次回話結束後會取消設置的path
, 可以寫一個bat每次自動運行
how-to-use-npm-with-node-exe
推薦閱讀: