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
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
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
Fluid Templating in TYPO3 14
s2b
0
130
インターン生でもAuth0で認証基盤刷新が出来るのか
taku271
0
190
今から始めるClaude Code超入門
448jp
8
8.9k
CSC307 Lecture 04
javiergs
PRO
0
660
Oxlintはいいぞ
yug1224
5
1.3k
humanlayerのブログから学ぶ、良いCLAUDE.mdの書き方
tsukamoto1783
0
200
AtCoder Conference 2025
shindannin
0
1.1k
AIフル活用時代だからこそ学んでおきたい働き方の心得
shinoyu
0
140
Best-Practices-for-Cortex-Analyst-and-AI-Agent
ryotaroikeda
1
110
Apache Iceberg V3 and migration to V3
tomtanaka
0
160
Basic Architectures
denyspoltorak
0
680
【卒業研究】会話ログ分析によるユーザーごとの関心に応じた話題提案手法
momok47
0
200
Featured
See All Featured
Automating Front-end Workflow
addyosmani
1371
200k
コードの90%をAIが書く世界で何が待っているのか / What awaits us in a world where 90% of the code is written by AI
rkaga
60
42k
The Impact of AI in SEO - AI Overviews June 2024 Edition
aleyda
5
730
Conquering PDFs: document understanding beyond plain text
inesmontani
PRO
4
2.3k
From Legacy to Launchpad: Building Startup-Ready Communities
dugsong
0
140
Marketing to machines
jonoalderson
1
4.6k
Unsuck your backbone
ammeep
671
58k
Collaborative Software Design: How to facilitate domain modelling decisions
baasie
0
140
Bootstrapping a Software Product
garrettdimon
PRO
307
120k
Breaking role norms: Why Content Design is so much more than writing copy - Taylor Woolridge
uxyall
0
170
Hiding What from Whom? A Critical Review of the History of Programming languages for Music
tomoyanonymous
2
420
Leveraging Curiosity to Care for An Aging Population
cassininazir
1
160
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