Meteor 入门

安装 Meteor

在 OS X 和 Linux 上

从终端安装最新的官方 Meteor 版本:

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

在 Windows 上

在此处下载官方 Meteor 安装程序

创建你的应用

安装 Meteor 后,创建一个项目:

$ meteor create myapp

运行

在本地运行:

$ cd myapp
$ meteor npm install
$ meteor

注意: 运行的 Meteor 服务器: http:// localhost:3000 /

然后前往 http:// localhost:3000 查看新的 Meteor 应用程序。

  • 阅读 [流星指南]中有关 Meteor 入门的更多信息。
  • 大气中探索流星包 - 一个现代,快速,精心设计的包管理器。