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
660
Intro to Meteor.js
Brian Donghee Shin
October 07, 2014
Tweet
Share
Other Decks in Programming
See All in Programming
顧客の画像データをテラバイト単位で配信する 画像サーバを WebP にした際に起こった課題と その対応策 ~継続的な取り組みを添えて~
takutakahashi
1
190
AIともっと楽するE2Eテスト
myohei
7
2.9k
AI駆動のマルチエージェントによる業務フロー自動化の設計と実践
h_okkah
0
200
チームで開発し事業を加速するための"良い"設計の考え方 @ サポーターズCoLab 2025-07-08
agatan
1
450
たった 1 枚の PHP ファイルで実装する MCP サーバ / MCP Server with Vanilla PHP
okashoi
1
270
ニーリーにおけるプロダクトエンジニア
nealle
0
890
Rubyでやりたい駆動開発 / Ruby driven development
chobishiba
1
750
VS Code Update for GitHub Copilot
74th
2
670
GPUを計算資源として使おう!
primenumber
1
190
Flutterで備える!Accessibility Nutrition Labels完全ガイド
yuukiw00w
0
170
おやつのお供はお決まりですか?@WWDC25 Recap -Japan-\(region).swift
shingangan
0
140
MCPを使ってイベントソーシングのAIコーディングを効率化する / Streamlining Event Sourcing AI Coding with MCP
tomohisa
0
150
Featured
See All Featured
BBQ
matthewcrist
89
9.7k
Mobile First: as difficult as doing things right
swwweet
223
9.7k
Optimising Largest Contentful Paint
csswizardry
37
3.3k
Become a Pro
speakerdeck
PRO
29
5.4k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
15
1.6k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
34
3.1k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
Optimizing for Happiness
mojombo
379
70k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
45
7.5k
Navigating Team Friction
lara
187
15k
GraphQLの誤解/rethinking-graphql
sonatard
71
11k
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