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
280
Manejando Docker containers con Ruby y backticks
hpneo
0
350
CodePicnic: Lecciones aprendidas al crear una startup tecnológica
hpneo
0
490
Universal Web apps con JavaScript
hpneo
0
300
gmaps.js - 4 lecciones open source en 4 pasos
hpneo
0
690
Xamarin
hpneo
1
290
Desarrollo FrontEnd con JavaScript - S06
hpneo
0
110
Desarrollo FrontEnd con JavaScript - S05
hpneo
0
63
Desarrollo FrontEnd con JavaScript - S04
hpneo
0
83
Other Decks in Programming
See All in Programming
Railsだからできる 例外業務に禍根を残さない 設定設計パターン
ei_ei_eiichi
0
340
LLMとPlaywright/reg-suitを活用した jQueryリファクタリングの実際
kinocoboy2
4
670
ABEMAモバイルアプリが Kotlin Multiplatformと歩んだ5年 ─ 導入と運用、成功と課題 / iOSDC 2025
akkyie
0
330
ИИ-Агенты в каждый дом – Алексей Порядин, PythoNN
sobolevn
0
150
株式会社 Sun terras カンパニーデック
sunterras
0
230
AIエージェント時代における TypeScriptスキーマ駆動開発の新たな役割
bicstone
4
1.5k
開発者への寄付をアプリ内課金として実装する時の気の使いどころ
ski
0
350
私達はmodernize packageに夢を見るか feat. go/analysis, go/ast / Go Conference 2025
kaorumuta
2
490
CSC509 Lecture 03
javiergs
PRO
0
330
CSC509 Lecture 06
javiergs
PRO
0
240
Back to the Future: Let me tell you about the ACP protocol
terhechte
0
130
dynamic!
moro
9
6.6k
Featured
See All Featured
Become a Pro
speakerdeck
PRO
29
5.5k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.2k
GraphQLとの向き合い方2022年版
quramy
49
14k
Practical Orchestrator
shlominoach
190
11k
Building an army of robots
kneath
306
46k
Code Review Best Practice
trishagee
72
19k
Typedesign – Prime Four
hannesfritz
42
2.8k
What's in a price? How to price your products and services
michaelherold
246
12k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
46
7.6k
The Language of Interfaces
destraynor
162
25k
How to Think Like a Performance Engineer
csswizardry
27
2k
Context Engineering - Making Every Token Count
addyosmani
5
190
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