學習meteor

#安裝node

##安裝基本的webpack

apt-get update
apt-get install git curl language-pack-zh-hans

##安裝全局的git

通常安裝全局的,默認會安裝到home目錄的.npm或者.nvm裏github

###安裝nvmweb

wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash
source .bashrc

###安裝nodeexpress

// 切換一下安裝源
export NVM_NODEJS_ORG_MIRROR=https://npm.taobao.org/mirrors/node
//安裝最新版本的node,6.2
nvm install node
//指定node版本爲5.8
nvm install 5.8
#npm自動補全
npm completion >> ~/.bashrc

###安裝gulpnpm

參考gulp

npm install --global gulp --registry=https://registry.npm.taobao.org

###安裝meteor瀏覽器

curl https://install.meteor.com/ | sh

###安裝webpacksass

npm install webpack -g --registry=https://registry.npm.taobao.org

##在項目裏安裝

到項目目錄,先使用命令npm init來初始化

###安裝gulp

參考

// 在項目中也要安裝一次,做爲項目的開發依賴(devDependencies)安裝
npm install --save-dev gulp --registry=https://registry.npm.taobao.org

###安裝gulp插件

// 用來處理sass文件
npm install --save-dev gulp-sass --registry=https://registry.npm.taobao.org
// 用來處理各瀏覽器兼容
npm install --save-dev gulp-autoprefixer --registry=https://registry.npm.taobao.org

###安裝express

npm install --save express --registry=https://registry.npm.taobao.org
// 簡易生成器,安裝完能夠用express hello來生成hello項目
npm install -g express-generator

###安裝webpack

npm install webpack jsx-loader --save --registry=https://registry.npm.taobao.or

#安裝示例

meteor create --list
meteor create --example simple-todos
git clone https://github.com/meteor/simple-todos

#參考

https://github.com/creationix/nvm
相關文章
相關標籤/搜索