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 #06
Search
Gustavo Leon
February 15, 2013
Programming
0
100
Desarrollo FrontEnd con JavaScript #06
Gustavo Leon
February 15, 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
81
Other Decks in Programming
See All in Programming
20250628_非エンジニアがバイブコーディングしてみた
ponponmikankan
0
520
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
330
“いい感じ“な定量評価を求めて - Four Keysとアウトカムの間の探求 -
nealle
0
170
XP, Testing and ninja testing
m_seki
3
220
エラーって何種類あるの?
kajitack
5
320
PHPでWebSocketサーバーを実装しよう2025
kubotak
0
230
WebViewの現在地 - SwiftUI時代のWebKit - / The Current State Of WebView
marcy731
0
100
ニーリーにおけるプロダクトエンジニア
nealle
0
650
既存デザインを変更せずにタップ領域を広げる方法
tahia910
1
240
PicoRuby on Rails
makicamel
2
110
GoのGenericsによるslice操作との付き合い方
syumai
3
700
ソフトウェア品質を数字で捉える技術。事業成長を支えるシステム品質の マネジメント
takuya542
0
200
Featured
See All Featured
Side Projects
sachag
455
42k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
3.9k
Designing for humans not robots
tammielis
253
25k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
710
Gamification - CAS2011
davidbonilla
81
5.3k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
45
7.5k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
46
9.6k
Optimizing for Happiness
mojombo
379
70k
Agile that works and the tools we love
rasmusluckow
329
21k
Balancing Empowerment & Direction
lara
1
380
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
17
950
Transcript
#06 – rest / json / aplicaciones mvc
None
REST • Utiliza recursos cuyos nombres son únicos. • Realiza
operaciones CRUD mediante verbos HTTP.
Create Read Update Delete POST GET PUT DELETE
Create Read Update Delete create_user get_user update_user delete_user
Create Read Update Delete /users /users/1 /users/1 /users/1
JSON • Notación similar a objetos planos de JavaScript. •
Ideal para aplicaciones web frente al uso de XML.
None
Controller View Model