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
Desarrollo FrontEnd con JavaScript #04
Search
Gustavo Leon
February 08, 2013
Programming
2
110
Desarrollo FrontEnd con JavaScript #04
Gustavo Leon
February 08, 2013
Tweet
Share
More Decks by Gustavo Leon
See All by Gustavo Leon
Usando Preact - Una alternativa ligera a React
hpneo
0
230
Manejando Docker containers con Ruby y backticks
hpneo
0
320
CodePicnic: Lecciones aprendidas al crear una startup tecnológica
hpneo
0
430
Universal Web apps con JavaScript
hpneo
0
280
gmaps.js - 4 lecciones open source en 4 pasos
hpneo
0
660
Xamarin
hpneo
1
260
Desarrollo FrontEnd con JavaScript - S06
hpneo
0
98
Desarrollo FrontEnd con JavaScript - S05
hpneo
0
54
Desarrollo FrontEnd con JavaScript - S04
hpneo
0
77
Other Decks in Programming
See All in Programming
Внедряем бюджетирование, или Как сделать хорошо?
lamodatech
0
980
ecspresso, ecschedule, lambroll を PipeCDプラグインとして動かしてみた (プロトタイプ) / Running ecspresso, ecschedule, and lambroll as PipeCD Plugins (prototype)
tkikuc
2
2.3k
Rubyでつくるパケットキャプチャツール
ydah
0
530
Java Webフレームワークの現状 / java web framework at burikaigi
kishida
9
2k
個人アプリを2年ぶりにアプデしたから褒めて / I just updated my personal app, praise me!
lovee
0
300
functionalなアプローチで動的要素を排除する
ryopeko
1
920
rails newと同時に型を書く
aki19035vc
6
740
SRE、開発、QAが協業して挑んだリリースプロセス改革@SRE Kaigi 2025
nealle
1
3.3k
Kanzawa.rbのLT大会を支える技術の裏側を変更する Ruby on Rails + Litestream 編
muryoimpl
0
120
いりゃあせ、PHPカンファレンス名古屋2025 / Welcome to PHP Conference Nagoya 2025
ttskch
1
240
Simple組み合わせ村から大都会Railsにやってきた俺は / Coming to Rails from the Simple
moznion
3
3.7k
定理証明プラットフォーム lapisla.net
abap34
1
670
Featured
See All Featured
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
330
21k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
6
520
KATA
mclloyd
29
14k
Why You Should Never Use an ORM
jnunemaker
PRO
55
9.2k
Done Done
chrislema
182
16k
Building Your Own Lightsaber
phodgson
104
6.2k
Unsuck your backbone
ammeep
669
57k
Mobile First: as difficult as doing things right
swwweet
222
9.2k
jQuery: Nuts, Bolts and Bling
dougneiner
63
7.6k
A Modern Web Designer's Workflow
chriscoyier
693
190k
Reflections from 52 weeks, 52 projects
jeffersonlam
348
20k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
365
25k
Transcript
#04 – history api / file api / websockets
None
window.history • Guarda las páginas visitadas y permite navegar entre
ellas. • También guarda el estado de la entrada actual.
pushState y replaceState • pushState : Crea una nueva entrada
en window.history. • replaceState : Reemplaza la última entrada del history.
onhashchange / onpopstate
Soporte
Soporte IE10 Chrome8+ / Safari5+ Firefox 4+ Opera 10.5+
None
File API • Permite manejar archivos sin necesidad de subirlos
a un servidor.
FileReader
Eventos 1. onloadstart 2. onprogress 3. onload 4. onloadend •
onerror • onabort
Soporte
Soporte IE10 Chrome13+ / Safari6+ Firefox 3.6+ Opera 11.1+
None
¿Cómo hacer que el servidor se comunique con el cliente?
WebSockets
Usos
Usos Chat Juegos multiplayer Notificaciones Social streams
Eventos • onopen • onclose • onmessage • onerror
Soporte
Soporte IE10 Chrome8+ / Safari5+ Firefox 4+ Opera 10.5+