开发背景

博客一直用的是 Jekyll, 突然想玩玩 NodeJS 和 Hexo, 于是就试着搭建一下

绿色环境, 基于 Window8, 不需要管理员权限

重点就是不需要管理员权限, 因此可以在工作区搭建

NodeJS

主要就是本体和 NPM

当前版本:

node -v
v6.9.4

npm -v
4.1.1

NodeJS Installation

官网直接下载最新 Node.exe 就是

NPM Installation1

  1. Download the latest npm release from GitHub ( https://github.com/npm/npm/releases )
  2. Create folders c:\nodejs\node_modules and c:\nodejs\node_modules\npm
  3. Unzip the downloaded zip file in c:\nodejs\node_modules\npm folder
  4. Copy npm and npm.cmd files from c:\nodejs\node_modules\npm\bin to c:\nodejs folder

Once setup is done, it can be used to install/uninstall packages locally or globally. For more information on using npm visit https://docs.npmjs.com/.

As the final step you can add node's folder path c:\nodejs to the path environment variable so that you don't have to specify full path when running node.exe and npm at command prompt.

淘宝镜像

直接到他们网站查看用法吧: https://npm.taobao.org/

环境变量

cmd 里面每次将NodeJS目录当做path就行

SET PATH=C:\Users\xxxx\Desktop\NodeJS;%PATH%

然后NodeNPM命令都可以直接使用了

注意每次回话结束后会取消设置的path, 可以写一个 bat 每次自动运行

参考文献

Footnotes

  1. how-to-use-npm-with-node-exe