一 在windows下安装
因为本人长期在Windows下工作,所以一上手就在Windows 10下试用meteor.
- 在官网 https://www.meteor.com/install 找到Windows Installer
- 发现下载的安装包只有1.1 MB ,马上有种不详的预感...
- 果然还有大量的内容通过 Installer 要下载...
安装过程不算快,花了15分钟左右安装完成,兴冲冲的运行 meteor ,被告之:
Z:\meteor
'"C:\Users\Administrator\AppData\Local.meteor\packages\meteor-tool\1.4.2\mt-os.windows.x86_32\meteor.bat"' 不是内部或外部命令,也不是可运行的程序
真是一个惊喜....
去 C:\Users\Administrator\AppData\Local.meteor\packages\meteor-tool\1.4.2\mt-os.windows.x86_32\ 看了下,根本没这个meteor.bat文件
先放弃.
二 在 Ubuntu 下安装
环境
Linux ubuntu 4.2.0-16-generic #19-Ubuntu SMP Thu Oct 8 15:35:06 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
使用官网的命令安装
curl https://install.meteor.com/ | sh
这次顺利的安装完了
随便创建个空应用
meteor create myapp
cd myapp
meteor run
可以正常运行.不错.
[[[[[ /data/test/myapp ]]]]]
=> Started proxy.
=> Started MongoDB.
=> Started your app.
=> App running at: http://localhost:3000/
用 Firefox 打开 http://localhost:3000 一看.吓一跳,这个请求数有点多啊(59个):
Paste_Image.pngmeteor初始化出来的基本架构(我没有添加任何文件)
Paste_Image.png
网友评论