Meteor 入门
安装 Meteor
在 OS X 和 Linux 上
从终端安装最新的官方 Meteor 版本:
$ curl https://install.meteor.com/ | sh
在 Windows 上
创建你的应用
安装 Meteor 后,创建一个项目:
$ meteor create myapp
运行
在本地运行:
$ cd myapp
$ meteor npm install
$ meteor
注意: 运行的 Meteor 服务器: http:// localhost:3000 /
然后前往 http:// localhost:3000 查看新的 Meteor 应用程序。