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
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
Brian Donghee Shin
October 07, 2014
Programming
4
660
Intro to Meteor.js
Brian Donghee Shin
October 07, 2014
Tweet
Share
Other Decks in Programming
See All in Programming
Ruby x Terminal
a_matsuda
7
590
AWS×クラウドネイティブソフトウェア設計 / AWS x Cloud-Native Software Design
nrslib
9
2.2k
守る「だけ」の優しいEMを抜けて、 事業とチームを両方見る視点を身につけた話
maroon8021
3
340
米国のサイバーセキュリティタイムラインと見る Goの暗号パッケージの進化
tomtwinkle
2
440
Fundamentals of Software Engineering In the Age of AI
therealdanvega
1
220
AIコーディングの理想と現実 2026 | AI Coding: Expectations vs. Reality 2026
tomohisa
0
1.1k
ベクトル検索のフィルタを用いた機械学習モデルとの統合 / python-meetup-fukuoka-06-vector-attr
monochromegane
2
330
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
400
株式会社 Sun terras カンパニーデック
sunterras
0
2k
ご飯食べながらエージェントが開発できる。そう、Agentic Engineeringならね。
yokomachi
1
290
Rubyと楽しいをつくる / Creating joy with Ruby
chobishiba
0
210
Rails Girls Tokyo 18th GMO Pepabo Sponsor Talk
yutokyokutyo
0
200
Featured
See All Featured
Product Roadmaps are Hard
iamctodd
PRO
55
12k
Jess Joyce - The Pitfalls of Following Frameworks
techseoconnect
PRO
1
95
Exploring anti-patterns in Rails
aemeredith
2
280
The Pragmatic Product Professional
lauravandoore
37
7.2k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
16k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
122
21k
[SF Ruby Conf 2025] Rails X
palkan
2
820
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.7k
SERP Conf. Vienna - Web Accessibility: Optimizing for Inclusivity and SEO
sarafernandez
1
1.3k
The State of eCommerce SEO: How to Win in Today's Products SERPs - #SEOweek
aleyda
2
9.8k
How STYLIGHT went responsive
nonsquared
100
6k
ラッコキーワード サービス紹介資料
rakko
1
2.5M
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