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
280
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
Team operations that are not burdened by SRE
kazatohiei
1
310
Claude Code + Container Use と Cursor で作る ローカル並列開発環境のススメ / ccc local dev
kaelaela
9
5.2k
なんとなくわかった気になるブロックテーマ入門/contents.nagoya 2025 6.28
chiilog
1
270
Flutterで備える!Accessibility Nutrition Labels完全ガイド
yuukiw00w
0
160
テストから始めるAgentic Coding 〜Claude Codeと共に行うTDD〜 / Agentic Coding starts with testing
rkaga
12
4.5k
Google Agent Development Kit でLINE Botを作ってみた
ymd65536
2
250
Rubyでやりたい駆動開発 / Ruby driven development
chobishiba
1
700
たった 1 枚の PHP ファイルで実装する MCP サーバ / MCP Server with Vanilla PHP
okashoi
1
250
LT 2025-06-30: プロダクトエンジニアの役割
yamamotok
0
760
VS Code Update for GitHub Copilot
74th
2
640
Modern Angular with Signals and Signal Store:New Rules for Your Architecture @enterJS Advanced Angular Day 2025
manfredsteyer
PRO
0
220
Node-RED を(HTTP で)つなげる MCP サーバーを作ってみた
highu
0
120
Featured
See All Featured
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
130
19k
Building a Scalable Design System with Sketch
lauravandoore
462
33k
Adopting Sorbet at Scale
ufuk
77
9.5k
Why Our Code Smells
bkeepers
PRO
336
57k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Build The Right Thing And Hit Your Dates
maggiecrowley
36
2.8k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
[RailsConf 2023] Rails as a piece of cake
palkan
55
5.7k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
107
19k
Building Applications with DynamoDB
mza
95
6.5k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
44
2.4k
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+