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
120
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
320
Manejando Docker containers con Ruby y backticks
hpneo
0
380
CodePicnic: Lecciones aprendidas al crear una startup tecnológica
hpneo
0
530
Universal Web apps con JavaScript
hpneo
0
330
gmaps.js - 4 lecciones open source en 4 pasos
hpneo
0
720
Xamarin
hpneo
1
310
Desarrollo FrontEnd con JavaScript - S06
hpneo
0
110
Desarrollo FrontEnd con JavaScript - S05
hpneo
0
69
Desarrollo FrontEnd con JavaScript - S04
hpneo
0
100
Other Decks in Programming
See All in Programming
AWS×クラウドネイティブソフトウェア設計 / AWS x Cloud-Native Software Design
nrslib
16
3.2k
grapheme_strrev関数が採択されました(あと雑感)
youkidearitai
PRO
1
230
CS教育のDX AIによる育成の効率化
niftycorp
PRO
0
140
AI駆動開発の本音 〜Claude Code並列開発で見えたエンジニアの新しい役割〜
hisuzuya
4
520
ロボットのための工場に灯りは要らない
watany
10
2.9k
野球解説AI Agentを開発してみた - 2026/02/27 LayerX社内LT会資料
shinyorke
PRO
0
340
AI活用のコスパを最大化する方法
ochtum
0
130
Symfony + NelmioApiDocBundle を使った スキーマ駆動開発 / Schema Driven Development with NelmioApiDocBundle
okashoi
0
160
Understanding Apache Lucene - More than just full-text search
spinscale
0
130
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
590
SourceGeneratorのマーカー属性問題について
htkym
0
200
go directiveを最新にしすぎないで欲しい話──あるいは、Go 1.26からgo mod initで作られるgo directiveの値が変わる話 / Go 1.26 リリースパーティ
arthur1
2
560
Featured
See All Featured
WENDY [Excerpt]
tessaabrams
9
36k
How to build an LLM SEO readiness audit: a practical framework
nmsamuel
1
680
The AI Search Optimization Roadmap by Aleyda Solis
aleyda
1
5.4k
30 Presentation Tips
portentint
PRO
1
250
First, design no harm
axbom
PRO
2
1.1k
Product Roadmaps are Hard
iamctodd
PRO
55
12k
Practical Orchestrator
shlominoach
191
11k
Self-Hosted WebAssembly Runtime for Runtime-Neutral Checkpoint/Restore in Edge–Cloud Continuum
chikuwait
0
400
Abbi's Birthday
coloredviolet
2
5.4k
SEO in 2025: How to Prepare for the Future of Search
ipullrank
3
3.4k
SERP Conf. Vienna - Web Accessibility: Optimizing for Inclusivity and SEO
sarafernandez
1
1.3k
Pawsitive SEO: Lessons from My Dog (and Many Mistakes) on Thriving as a Consultant in the Age of AI
davidcarrasco
0
88
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+