Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Intro to Meteor.js
Search
Brian Donghee Shin
October 07, 2014
Programming
4
650
Intro to Meteor.js
Brian Donghee Shin
October 07, 2014
Tweet
Share
Other Decks in Programming
See All in Programming
よくできたテンプレート言語として TypeScript + JSX を利用する試み / Using TypeScript + JSX outside of Web Frontend #TSKaigiKansai
izumin5210
6
1.8k
Streams APIとTCPフロー制御 / Web Streams API and TCP flow control
tasshi
2
360
카카오페이는 어떻게 수천만 결제를 처리할까? 우아한 결제 분산락 노하우
kakao
PRO
0
110
Tauriでネイティブアプリを作りたい
tsucchinoko
0
380
watsonx.ai Dojo #4 生成AIを使ったアプリ開発、応用編
oniak3ibm
PRO
1
190
[Do iOS '24] Ship your app on a Friday...and enjoy your weekend!
polpielladev
0
110
Enabling DevOps and Team Topologies Through Architecture: Architecting for Fast Flow
cer
PRO
0
350
Jakarta EE meets AI
ivargrimstad
0
320
距離関数を極める! / SESSIONS 2024
gam0022
0
300
イマのCSSでできる インタラクション最前線 + CSS最新情報
clockmaker
4
2.4k
最新TCAキャッチアップ
0si43
0
200
Macとオーディオ再生 2024/11/02
yusukeito
0
380
Featured
See All Featured
Java REST API Framework Comparison - PWX 2021
mraible
PRO
28
8.2k
Fashionably flexible responsive web design (full day workshop)
malarkey
405
65k
Building a Scalable Design System with Sketch
lauravandoore
459
33k
Fireside Chat
paigeccino
34
3k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
8
900
What’s in a name? Adding method to the madness
productmarketing
PRO
22
3.1k
It's Worth the Effort
3n
183
27k
Designing on Purpose - Digital PM Summit 2013
jponch
115
7k
The Language of Interfaces
destraynor
154
24k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
93
16k
Making the Leap to Tech Lead
cromwellryan
133
8.9k
Become a Pro
speakerdeck
PRO
25
5k
Transcript
Intro to Meteor.js B R I A N S H
I N | A D I C U . C O M / R E S O U R C E S
None
Meteor.js • a full stack web framework • reactive -
good for realtime applications (chat) • all in Javascript
Today Concepts Uses Coding Questions
It’s all Javascript var button = $(“.button”); var currentTime =
Date.now(); button.click(function() { alert(“Button pressed at ” + currentTime); // Save to database??? });
It’s all Javascript var ButtonTracker = new Mongo.Collection(); var button
= $(“.button”); var currentTime = Date.now(); button.click(function() { alert(“Button pressed at ” + currentTime); ButtonTracker.insert({‘currentTime’: currentTime}); });
Client and Server run the same code* var ButtonTracker =
new Mongo.Collection(); var button = $(“.button”); var currentTime = Date.now(); button.click(function() { alert(“Button pressed at ” + currentTime); ButtonTracker.insert({‘currentTime’: currentTime}); });
Traditional Web Stack
Traditional Web Stack
Meteor.js Stack
Meteor is reactive
How is Reactivity done? Realtime sync (Websockets) Local database Autorun
None
Today Concepts Uses Coding Questions
Respondly https://respond.ly/
Courses by ADI 1,300 lines of Javascript
Courses by ADI • Awesome packages • Users, Facebook, Twitter
Login included • Code sharing between backend and frontend
Today Concepts Uses Coding Questions
Coding Go to goo.gl/2SVNFx
Today Concepts Uses Coding Questions
Thanks for coming! A D I C U . C
O M / R E S O U R C E S