Kevin C.
I love sharing my learning journey in the technology land and hopefully you can also takeaway some interesting tidbits from mine for your own learning and inspire many others to pass on these knowledges. Enjoy and happy learning & sharing!
scaffolding
template engines
websocket
persistence libraries
Meteor.js
Build apps that are a delight to use, faster than you ever thought possible
UserAccounts = new Mongo.Collection('users');
> meteor add accounts-password
D:\Research\meteor\leaderboard>meteor add accounts-password
Changes to your project's package version selections:
accounts-base added, version 1.2.0
accounts-password added, version 1.1.1
email added, version 1.0.6
localstorage added, version 1.0.3
npm-bcrypt added, version 0.7.8_2
service-configuration added, version 1.0.4
sha added, version 1.0.3
srp added, version 1.0.3
accounts-password: Password support for accounts
D:\Research\meteor\leaderboard>
> meteor add accounts-twitter
> meteor add accounts-google
> meteor add accounts-facebook
> meteor add accounts-ui
D:\Research\meteor\leaderboard>meteor add accounts-ui
Changes to your project's package version selections:
accounts-ui added, version 1.1.5
accounts-ui-unstyled added, version 1.1.7
less added, version 1.0.14
accounts-ui: Simple templates to add login widgets to an app
D:\Research\meteor\leaderboard>
if(Meteor.isClient){
// this code only runs on the client
}
if(Meteor.isServer){
// this code only runs on the client
}
https://www.meteor.com/
http://nodeframework.com/
https://www.mongodb.com
By Kevin C.
The presentation summarised the advantages for using the JavaScript App Platform: Meteor, to build a modern Web App. I also provide an quick overview of how it is compare to other front-end framework / libraries such as AngularJS & React and what we can expect from the new 1.2 Meteor release.
I love sharing my learning journey in the technology land and hopefully you can also takeaway some interesting tidbits from mine for your own learning and inspire many others to pass on these knowledges. Enjoy and happy learning & sharing!