对于许多留言询问Orion使用问题的同学,在这里说一声抱歉。
对于Meteor长期任性不向下兼容的更新,各路开发者已经吐槽了几十个版本了。Orion的开发者也不例外,从1.2版本开始之后,就不在对Orion这个项目进行维护更新了。
那么问题来了,我的水平目前还没有达到修复所有更新的「Breaking Changes」,我如何使用Orion这么方便的包呢?
今天就来介绍一个Orion的继承者 — 天蝎座 Scorpius !
好吧,meteor从1.3之后就没更新过,作为一个被Meteor快速迭代抛弃的「新人」,我决定从头来过!
curl https://install.meteor.com/ | sh
Removing your existing Meteor installation.
Downloading Meteor distribution
######################################################################## 100.0%
Meteor 1.4.1.1 has been installed in your home directory (~/.meteor).
Writing a launcher script to /usr/local/bin/meteor for your convenience.
To get started fast:
$ meteor create ~/my_cool_app
$ cd ~/my_cool_app
$ meteor
上了个厕所以后,Meteor的更新完成了,目测现在没有很严重的墙的问题了。当年我们可是得等几十分钟的啊。
看一下1.4更(gao)新(za)了啥 https://guide.meteor.com/1.4-migration.html
所以,该怎么装天蝎座呢?一脸懵逼中……对了,有atmosphere,赶紧查一下!
不错,看来Orion有的扩展包,这个Scorpius都clone了一份,嘿嘿。
不管三七二十一,先把看的顺眼的扩展包都装了!
# 核心包meteor add scorpiusjs:core# 样式meteor add twbs:bootstrap fortawesome:fontawesome scorpiusjs:bootstrap# 路由meteor add kadira:flow-router kadira:blaze-layout
我们可以看到,和Orion一样,Core核心包里包括了
blaze-html-templates
ecmascript
meteor
scorpiusjs:basescorpiusjs:lang-en
scorpiusjs:collections
scorpiusjs:dictionary
scorpiusjs:accounts
scorpiusjs:attributes
scorpiusjs:config
这些东西,就是我们有了英文的翻译,后台集合条目CURD,字典,账户,属性接口,配置管理这些功能。
来,天灵灵,地灵灵,期望编译不出错!终于感受到了C++程序员的痛苦了。
meteor
[[[[[ ~/Github/meteor/orion_next ]]]]]
=> Started proxy.
=> Started MongoDB.
I20160930-16:25:09.709(8)? ** You've set up some data subscriptions with Meteor.publish(), but
I20160930-16:25:09.858(8)? ** you still have autopublish turned on. Because autopublish is still
I20160930-16:25:09.858(8)? ** on, your Meteor.publish() calls won't have much effect. All data
I20160930-16:25:09.859(8)? ** will still be sent to all clients.
I20160930-16:25:09.859(8)? **
I20160930-16:25:09.859(8)? ** Turn off autopublish by removing the autopublish package:
I20160930-16:25:09.859(8)? **
I20160930-16:25:09.859(8)? ** $ meteor remove autopublish
I20160930-16:25:09.859(8)? **
I20160930-16:25:09.860(8)? ** .. and make sure you have Meteor.publish() and Meteor.subscribe() calls
I20160930-16:25:09.860(8)? ** for each collection that you want clients to see.
I20160930-16:25:09.860(8)?
I20160930-16:25:10.165(8)? Scorpius config initialized
I20160930-16:25:10.267(8)? Scorpius dictionary initialized
=> Started your app.
=> App running at: http://localhost:3000/
哇塞,居然没有出错!啊咧咧!
生产环境中,我们需要把prototyping的两个包注释掉,当然开发过程中可以暂时留着。
# autopublish@1.0.7 # Publish all data to the clients (for prototyping)
# insecure@1.0.7 # Allow all DB writes from clients (for prototyping)
进入/admin,看到了熟悉的登录注册界面,Orion指定创建的第一个用户为管理员用户。
当然,由于天蝎座只有0.3.0,所以很多功能还不完善,还得修改许多Orion和Meteor1.4的适配问题,这里创建完用户之后,会出现这个错误,不过呢,第一个用户还是创建了的,我们可以登入后台/admin,可是登进去以后,左边栏什么都没有,果然没有admin权限就是什么都看不到。
好在我们可以通过meteor shell
手动解决这个问题:
# 在项目路径,新开一个shell,使用meteor shell命令登录# 看看刚才创建的用户> Meteor.users.findOne()
Document {
_id: 'mDBG7Fu8QBjdnY9zs',
createdAt: Fri Sep 30 2016 16:28:55 GMT+0800 (CST),
services:
{ password: { bcrypt: '$2a$10$7cX1FNRfNdrromkugyOikOnwDr6lfC8gTf404OliLGKOqP7hrDSOK' },
resume: { loginTokens: [Object] } },
emails: [ { address: 'dragonszy@163.com', verified: false } ],
profile: { name: 'dragonszy' } }
然后我们使用Roles包的赋予权限命令:
> let u = Meteor.users.findOne();
> Roles.addUserToRoles(u._id, ["admin"]);
{ numberAffected: 1, insertedId: 'QoJ6pKRnozXZppJSo' }
然后我们的后台(的侧边栏)就完美展现啦!
可是还有点小问题,就是点进去看不到表格,打开浏览器console,发现报错ReferenceError: Session is not defined
。不要着急,看看.meteor/packages
果然没有session,我们添加它即可。
所以,经过不懈的努力和探索,Orion->Scorpius终于可以正常使用啦!撒花!
Accounts
Dictionary
Post
Scorpius已被国外团队成功使用在最近的48h Hackhaton上,所以基本功能都是没有大问题滴!Meteor 1.2 版本以后的同学可以直接使用Scorpius在未来的项目上,文档可以先参考Orion的,Scorpius文档之后会陆续跟上的。
48h Hackhaton by Scorpius
最后,当然是奉上Github地址啦!如有问题,请参见: https://github.com/loongmxbt/orion_next
祝大家学(ru)习(keng)Meteor愉快!我接着帮大家踩Phoenix/Elixir的坑去了,别忘记关注微信公众号「Meteor全栈开发」哦~