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
260
Manejando Docker containers con Ruby y backticks
hpneo
0
350
CodePicnic: Lecciones aprendidas al crear una startup tecnológica
hpneo
0
470
Universal Web apps con JavaScript
hpneo
0
300
gmaps.js - 4 lecciones open source en 4 pasos
hpneo
0
680
Xamarin
hpneo
1
290
Desarrollo FrontEnd con JavaScript - S06
hpneo
0
100
Desarrollo FrontEnd con JavaScript - S05
hpneo
0
60
Desarrollo FrontEnd con JavaScript - S04
hpneo
0
82
Other Decks in Programming
See All in Programming
たった 1 枚の PHP ファイルで実装する MCP サーバ / MCP Server with Vanilla PHP
okashoi
1
280
코딩 에이전트 체크리스트: Claude Code ver.
nacyot
0
870
iOS 26にアップデートすると実機でのHot Reloadができない?
umigishiaoi
0
140
ペアプロ × 生成AI 現場での実践と課題について / generative-ai-in-pair-programming
codmoninc
2
20k
テストから始めるAgentic Coding 〜Claude Codeと共に行うTDD〜 / Agentic Coding starts with testing
rkaga
15
5.3k
新メンバーも今日から大活躍!SREが支えるスケールし続ける組織のオンボーディング
honmarkhunt
5
8.2k
おやつのお供はお決まりですか?@WWDC25 Recap -Japan-\(region).swift
shingangan
0
140
A full stack side project webapp all in Kotlin (KotlinConf 2025)
dankim
0
130
Claude Code + Container Use と Cursor で作る ローカル並列開発環境のススメ / ccc local dev
kaelaela
12
6.7k
VS Code Update for GitHub Copilot
74th
2
670
PHPで始める振る舞い駆動開発(Behaviour-Driven Development)
ohmori_yusuke
2
420
20250704_教育事業におけるアジャイルなデータ基盤構築
hanon52_
5
910
Featured
See All Featured
Six Lessons from altMBA
skipperchong
28
3.9k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
The Power of CSS Pseudo Elements
geoffreycrofte
77
5.9k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
656
60k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
48
2.9k
Rebuilding a faster, lazier Slack
samanthasiow
83
9.1k
Building Applications with DynamoDB
mza
95
6.5k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
281
13k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.6k
A Modern Web Designer's Workflow
chriscoyier
695
190k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
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+