Pomelo安装指南

Pomelo安装指南

 

Pomelo官方中文主页:
https://github.com/NetEase/pomelo/wiki/Home-in-Chinese

Pomelo官方中文介绍:
https://github.com/NetEase/pomelo/wiki/%E6%AC%A2%E8%BF%8E%E4%BD%BF%E7%94%A8pomelo

Pomelo官方中文安装文档:
https://github.com/NetEase/pomelo/wiki/%E5%AE%89%E8%A3%85pomelo


1,安装Node.js

> wget http://nodejs.org/dist/v0.10.33/node-v0.10.33.tar.gz
> ./configure
> make
> make install

如果执行:
> node
显示:
-bash: node: command not found

> vim ~/.bash_profile
在PATH中添加 whereis node 的路径
退出执行:
> source ~/.bash_profile


2,安装NPM

NPM(Node Package Manager),Node.js包管理器

官网地址:https://www.npmjs.org/

安装:curl -L https://npmjs.org/install.sh | sh


3,安装pomelo

npm install pomelo -g

// 这个过程可能会等很长时间,可能是npm服务器的问题。


4,测试pomelo

> mkdir hello
> cd hello
> pomelo init .
> ./npm-install.sh
// 安装依赖项
> cd game-server
> pomelo start &
> cd ../web-server
> node app &

用Chrome浏览器访问测试页:
 http://host:3001

关闭项目
> cd game-server
> pomelo stop

你可能感兴趣的:(Pomelo安装指南)