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
公共交通オープンデータ × モバイルUX 複雑な運行情報を 『直感』に変換する技術
tinykitten
PRO
0
210
CSC307 Lecture 03
javiergs
PRO
1
490
なるべく楽してバックエンドに型をつけたい!(楽とは言ってない)
hibiki_cube
0
140
Architectural Extensions
denyspoltorak
0
270
OCaml 5でモダンな並列プログラミングを Enjoyしよう!
haochenx
0
110
メルカリのリーダビリティチームが取り組む、AI時代のスケーラブルな品質文化
cloverrose
2
510
CSC307 Lecture 09
javiergs
PRO
1
810
AIエージェント、”どう作るか”で差は出るか? / AI Agents: Does the "How" Make a Difference?
rkaga
4
2k
HTTPプロトコル正しく理解していますか? 〜かわいい猫と共に学ぼう。ฅ^•ω•^ฅ ニャ〜
hekuchan
2
670
360° Signals in Angular: Signal Forms with SignalStore & Resources @ngLondon 01/2026
manfredsteyer
PRO
0
110
ThorVG Viewer In VS Code
nors
0
760
CSC307 Lecture 07
javiergs
PRO
0
540
Featured
See All Featured
Rebuilding a faster, lazier Slack
samanthasiow
85
9.4k
Claude Code どこまでも/ Claude Code Everywhere
nwiizo
61
52k
Agile that works and the tools we love
rasmusluckow
331
21k
The Impact of AI in SEO - AI Overviews June 2024 Edition
aleyda
5
720
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
47
7.9k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
38
2.7k
Digital Projects Gone Horribly Wrong (And the UX Pros Who Still Save the Day) - Dean Schuster
uxyall
0
270
The AI Search Optimization Roadmap by Aleyda Solis
aleyda
1
5.2k
Site-Speed That Sticks
csswizardry
13
1.1k
Thoughts on Productivity
jonyablonski
74
5k
Agile Leadership in an Agile Organization
kimpetersen
PRO
0
78
The SEO Collaboration Effect
kristinabergwall1
0
350
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