1、关于express 和 express-generator
express 是nodejs的一个web框架
express-generator是一个生成web应用基本目录结构的工具。
2、关于npm代理的问题
(解决网通不通的问题)设置npm在访问网络的时候需要的代理(ccproxy) npm config set proxy=http://172.16.254.58:808
(解决如何查找资源的问题)设置资源目录为淘宝镜像(注意与上面的含义不同)
(设置为中国镜像)npm config set registry http://registry.npm.taobao.org/
(设置为原来的标准镜像)npm config set registry http://registry.npmjs.org/