SlideShare a Scribd company logo
1 of 50
Download to read offline
Mike Cavaliere
mikecavaliere.com / @mcavaliere
Fun and

games
with the full-stack

Jamstack
๐Ÿ‘๐Ÿป thank you, !!!
๐Ÿ‘‹๐Ÿผ Hi, I'm Mike.
Full-Stack web/mobile
โค๏ธ
JS, React
Writes words
Gives talks
@mcavaliere
mcavaliere
mikecavaliere.com
๐Ÿง‘๐Ÿผโ€๐Ÿ’ป
what is this talk

about?
โžก Engineering requires lots of learning.
โžก Fun helps us learn.
๐Ÿ’ก Therefore: have fun while learning and practicing.
work on fun things.
TL;DR:
๐ŸŽ‰ Fun ๐ŸŽ‰ ๐Ÿ”บ Mood
๐Ÿ”บ Attention
๐Ÿ”บ Memory
FUN helps you learn
Source: science
Learn better,
faster,
& longer
this talk
Source: science
How I built a simple game in a day
Real-world skills practiced in v1
How this led to v2
Real-world learnings from v2
Fun and Games with the Full-Stack Jamstack
Mike Cavaliere ๐Ÿ”— mikecavaliere.com ๐Ÿ”— @mcavaliere
In case you haven't heard of it...
what is was the ?
JavaScript APIs Markup
+ + = "JAM"
Term coined by
Fun and Games with the Full-Stack Jamstack
Mike Cavaliere ๐Ÿ”— mikecavaliere.com ๐Ÿ”— @mcavaliere
In case you haven't heard of it...
what is was the ?
Build things in JS
Compile to HTML
Fetch data w/APIs
In case you haven't heard of it...
what is the ?
๐Ÿš€ FAST
๐Ÿ”Ž SEO
๐Ÿ” Secure
๐Ÿ“ˆ Scalable
๐Ÿ’ฐ Saves $$$
๐Ÿ’ป **Developer Experience (DX)**
Benefits:
๐Ÿ”— Jamstack.org
Fun and Games with the Full-Stack Jamstack
Mike Cavaliere ๐Ÿ”— mikecavaliere.com ๐Ÿ”— @mcavaliere
what is the Jamstack now?
Build things in anything
Compile to HTML
Fetch data w/APIs
Spoiler: it's the same thing.
๐Ÿ”— Netlify blog: The Jamstack definition evolved
Fun and Games with the Full-Stack Jamstack
Mike Cavaliere ๐Ÿ”— mikecavaliere.com ๐Ÿ”— @mcavaliere
Jamstack frameworks
https://jamstack.org/generators
& many more
Fun and Games with the Full-Stack Jamstack
Mike Cavaliere ๐Ÿ”— mikecavaliere.com ๐Ÿ”— @mcavaliere
Enter the
Full-Stack Jamstack
Frameworks that give you full control over the server-side.
Coined by fsjam.org
Part #1: Backstory
How this project got started.
Backstory
Have 8 hours investment time weekly
Demo on Friday
Wanted fun and interactive
Me: ๐Ÿ’ก "I'm gonna build a game!"
(๐Ÿ™Œ๐Ÿผ TY, Echobind)
What's the simplest "game" I can build in < 1 day?
What's the simplest "game" I can build in < 1 day?
Everybody

logs in
Click things
Update list of things
on screen.


Highest #clicks on
top.
v1 Goals
Ship in <8 hours
(use investment time)
Fun & interactive
Don't spend money
Use websockets (maybe)
Building the MVP
"Minimum Viable Product."
aka, the simplest version I can ship.
The tools I started the stack
with, which are (mostly) part of
my own standard boilerplate.
๐Ÿงฐ Toolbox ๐Ÿ› 
JS Framework
Database
Data fetching
UI/layout/design
Authentication
v1.0! ๐ŸŽ‰
Fun and Games with the Full-Stack Jamstack
Mike Cavaliere ๐Ÿ”— mikecavaliere.com ๐Ÿ”— @mcavaliere
building v1
Planning
Gen. scaffold / add

dependencies
GitHub Auth +
DB schema
Feature: emoji

picker
Feature: emoji

list
Tweak details Deploy
v1 "Architecture"
Boilerplate NextAuth
GitHub login/signup
Single-page app
building v1
Building the database
building v1
GitHub auth
Create GitHub OAuth app / API keys
Add next-auth + prisma adapter
Done - boilerplate screens
<EmojiPicker /> <Leaderboard /> <UserList />
building v1
<EmojiPicker /> <Leaderboard /> <UserList />
missive/emoji-mart
click
POST /api/emoji/create
INSERT emoji into DB
Record a single vote
<EmojiPicker /> <Leaderboard /> <UserList />
GET /api/emoji/list
every 200ms
query emoji, JOIN on votes
aggregate & sort by vote count
<span style={{ fontSize: 15 + e._count.votes * 5 }}>
{e.native}
</span>
<EmojiPicker /> <Leaderboard /> <UserList />
GET /api/users/list
every 200ms
V1 (MVP) Takeaways
Lessons & practiced skills.
UI
Page layout / styling
Data fetching
tech skills practiced
Frontend Backend
Data modeling
Database CRUD
API development
General
Type modeling (TypeScript)
Authentication
Product development (!)
Library proficiency
Shipping fast
"Good enough" iteration
other SkillS Improved
How to ship fast
Learning time accumulates
Being selective increases focus
Limit new learning


Start with tools you already know.
Don't reinvent the โ˜ธ๏ธ


Search before building.
Aim for "good enough."


Add TODOs for later.
making it better
Upgrades.
v1 areas for

improvement
UX: Emoji get tooooo big
UX: Updates slowly
UX: No animation
UX: How do we "win"?
Tech: Code is a mess; can't add

features easily
v2.0! ๐ŸŽ‰
Let's ๐Ÿคช play!
https://emoji-battle.vercel.app
(and maybe break the app)
Websockets / optimistic rendering
15-second rounds w/countdown
End-of-round stats
building v2
Rearchitected
Design additions, animations
building v2
Animation
building v2
๐Ÿ™Shout out to
Adding Websockets
๐Ÿš€ Real-time!
๐Ÿ™ Shout out to
Note: there are different

ways to achieve this.
building v2
Rounds architecture
building v2
How countdown works
currentStep == 13
building v2
React rearchitecting
Take state out of components
Move into React contexts
<RoundProvider>
<EmojisProvider>
Drop SWR, add react-query
Add useEffectReducer()
Move websockets, effects to custom hooks
Separate side effects
๐Ÿ‘๐ŸผDecouple all the things.๐Ÿ‘๐Ÿผ
Unnecessary details:
V2 Takeaways
Lessons & practiced skills.
Code reuse patterns
State management
Refactoring patterns
learnings
Optimistic rendering
Layout animations
Declarative/imperative

animations
React architectural patterns
Nested contexts
Side effect management
React
UI Dev
Software architecture
Also
Microservices
Websockets / realtime

events
What's next?
Battling on
๐Ÿ’ฅ Sound effects
๐Ÿ’ป Game mechanics
๐Ÿ—ก Weapons (take away votes)
๐Ÿ“ฑ Mobile friendliness
โฑ Longer rounds
๐Ÿคช Random animations
? Who knows.
Suggestions welcome!
What's next?
Open for contributions
mcavaliere/emoji-battle
mcavaliere/emoji-battle-api
โžก Engineering requires lots of learning.
โžก Fun helps us learn.
๐Ÿ’ก Therefore: have fun while learning and practicing.
work on fun things.
Recap:
mcavaliere/emoji-battle
thank you for watching!
mikecavaliere.com
@mcavaliere
๐Ÿง‘๐Ÿผโ€๐Ÿ’ป
Feedback

appreciated
๐Ÿ™

More Related Content

Similar to Fun and Games with the Full-Stack Jamstack (KCDC 2022).pdf

Responsive web design & mobile web development - a technical and business app...
Responsive web design & mobile web development - a technical and business app...Responsive web design & mobile web development - a technical and business app...
Responsive web design & mobile web development - a technical and business app...
Atos_Worldline
ย 
JAZOON'13 - Sven Peters - How to do Kick-Ass Software Development
JAZOON'13 - Sven Peters - How to do Kick-Ass Software DevelopmentJAZOON'13 - Sven Peters - How to do Kick-Ass Software Development
JAZOON'13 - Sven Peters - How to do Kick-Ass Software Development
jazoon13
ย 
SharePoint Development 101
SharePoint Development 101SharePoint Development 101
SharePoint Development 101
Greg Hurlman
ย 

Similar to Fun and Games with the Full-Stack Jamstack (KCDC 2022).pdf (20)

Building a game engine with jQuery
Building a game engine with jQueryBuilding a game engine with jQuery
Building a game engine with jQuery
ย 
Building Droids with JavaScript
Building Droids with JavaScriptBuilding Droids with JavaScript
Building Droids with JavaScript
ย 
Les animations sur WordPress - avec Damien
Les animations sur WordPress - avec DamienLes animations sur WordPress - avec Damien
Les animations sur WordPress - avec Damien
ย 
Maker Boot Camp
Maker Boot CampMaker Boot Camp
Maker Boot Camp
ย 
Responsive web design & mobile web development - a technical and business app...
Responsive web design & mobile web development - a technical and business app...Responsive web design & mobile web development - a technical and business app...
Responsive web design & mobile web development - a technical and business app...
ย 
Skill Session - Web Multi Device
Skill Session - Web Multi DeviceSkill Session - Web Multi Device
Skill Session - Web Multi Device
ย 
[DevRelCon Tokyo 2017] Creative Technical Content for Better Developer Experi...
[DevRelCon Tokyo 2017] Creative Technical Content for Better Developer Experi...[DevRelCon Tokyo 2017] Creative Technical Content for Better Developer Experi...
[DevRelCon Tokyo 2017] Creative Technical Content for Better Developer Experi...
ย 
RWD in the Wild
RWD in the WildRWD in the Wild
RWD in the Wild
ย 
JAZOON'13 - Sven Peters - How to do Kick-Ass Software Development
JAZOON'13 - Sven Peters - How to do Kick-Ass Software DevelopmentJAZOON'13 - Sven Peters - How to do Kick-Ass Software Development
JAZOON'13 - Sven Peters - How to do Kick-Ass Software Development
ย 
Sutd Game Lab's prototyping tips
Sutd Game Lab's prototyping tipsSutd Game Lab's prototyping tips
Sutd Game Lab's prototyping tips
ย 
Prototyping user interactions in web apps
Prototyping user interactions in web appsPrototyping user interactions in web apps
Prototyping user interactions in web apps
ย 
Leveling up your JavaScipt - DrupalJam 2017
Leveling up your JavaScipt - DrupalJam 2017Leveling up your JavaScipt - DrupalJam 2017
Leveling up your JavaScipt - DrupalJam 2017
ย 
Hacking to be performant
Hacking to be performantHacking to be performant
Hacking to be performant
ย 
Unleashing WebGL & WebAudio with babylon.js
Unleashing WebGL & WebAudio with babylon.jsUnleashing WebGL & WebAudio with babylon.js
Unleashing WebGL & WebAudio with babylon.js
ย 
Build a better(reactive) word press
Build a better(reactive) word pressBuild a better(reactive) word press
Build a better(reactive) word press
ย 
SharePoint Development 101
SharePoint Development 101SharePoint Development 101
SharePoint Development 101
ย 
Don't let your Service be speechless โ€“ Clive K. Lavery
Don't let your Service be speechless โ€“ Clive K. LaveryDon't let your Service be speechless โ€“ Clive K. Lavery
Don't let your Service be speechless โ€“ Clive K. Lavery
ย 
Building Web Hack Interfaces
Building Web Hack InterfacesBuilding Web Hack Interfaces
Building Web Hack Interfaces
ย 
Nebraska Trainer's Institute eLearning Presentaiotn
Nebraska Trainer's Institute eLearning PresentaiotnNebraska Trainer's Institute eLearning Presentaiotn
Nebraska Trainer's Institute eLearning Presentaiotn
ย 
Game development project
Game development projectGame development project
Game development project
ย 

Recently uploaded

๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
nirzagarg
ย 
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
SUHANI PANDEY
ย 
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
ย 
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
SUHANI PANDEY
ย 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
ย 
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRLLucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
imonikaupta
ย 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
@Chandigarh #call #Girls 9053900678 @Call #Girls in @Punjab 9053900678
ย 
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men ๐Ÿ”mehsana๐Ÿ” Escorts...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men  ๐Ÿ”mehsana๐Ÿ”   Escorts...โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men  ๐Ÿ”mehsana๐Ÿ”   Escorts...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men ๐Ÿ”mehsana๐Ÿ” Escorts...
nirzagarg
ย 
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
@Chandigarh #call #Girls 9053900678 @Call #Girls in @Punjab 9053900678
ย 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
SUHANI PANDEY
ย 

Recently uploaded (20)

(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
ย 
๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
ย 
Hireโ† Young Call Girls in Tilak nagar (Delhi) โ˜Ž๏ธ 9205541914 โ˜Ž๏ธ Independent Esc...
Hireโ† Young Call Girls in Tilak nagar (Delhi) โ˜Ž๏ธ 9205541914 โ˜Ž๏ธ Independent Esc...Hireโ† Young Call Girls in Tilak nagar (Delhi) โ˜Ž๏ธ 9205541914 โ˜Ž๏ธ Independent Esc...
Hireโ† Young Call Girls in Tilak nagar (Delhi) โ˜Ž๏ธ 9205541914 โ˜Ž๏ธ Independent Esc...
ย 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
ย 
best call girls in Hyderabad Finest Escorts Service ๐Ÿ“ž 9352988975 ๐Ÿ“ž Available ...
best call girls in Hyderabad Finest Escorts Service ๐Ÿ“ž 9352988975 ๐Ÿ“ž Available ...best call girls in Hyderabad Finest Escorts Service ๐Ÿ“ž 9352988975 ๐Ÿ“ž Available ...
best call girls in Hyderabad Finest Escorts Service ๐Ÿ“ž 9352988975 ๐Ÿ“ž Available ...
ย 
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
ย 
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
ย 
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
ย 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
ย 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
ย 
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRLLucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
ย 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
ย 
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men ๐Ÿ”mehsana๐Ÿ” Escorts...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men  ๐Ÿ”mehsana๐Ÿ”   Escorts...โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men  ๐Ÿ”mehsana๐Ÿ”   Escorts...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men ๐Ÿ”mehsana๐Ÿ” Escorts...
ย 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
ย 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
ย 
Busty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort Service
Busty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort ServiceBusty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort Service
Busty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort Service
ย 
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
ย 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
ย 
๐“€คCall On 7877925207 ๐“€ค Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
๐“€คCall On 7877925207 ๐“€ค Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...๐“€คCall On 7877925207 ๐“€ค Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
๐“€คCall On 7877925207 ๐“€ค Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
ย 
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
ย 

Fun and Games with the Full-Stack Jamstack (KCDC 2022).pdf

  • 1. Mike Cavaliere mikecavaliere.com / @mcavaliere Fun and games with the full-stack Jamstack
  • 3. ๐Ÿ‘‹๐Ÿผ Hi, I'm Mike. Full-Stack web/mobile โค๏ธ JS, React Writes words Gives talks @mcavaliere mcavaliere mikecavaliere.com ๐Ÿง‘๐Ÿผโ€๐Ÿ’ป
  • 4. what is this talk about?
  • 5. โžก Engineering requires lots of learning. โžก Fun helps us learn. ๐Ÿ’ก Therefore: have fun while learning and practicing. work on fun things. TL;DR:
  • 6. ๐ŸŽ‰ Fun ๐ŸŽ‰ ๐Ÿ”บ Mood ๐Ÿ”บ Attention ๐Ÿ”บ Memory FUN helps you learn Source: science Learn better, faster, & longer
  • 7. this talk Source: science How I built a simple game in a day Real-world skills practiced in v1 How this led to v2 Real-world learnings from v2
  • 8. Fun and Games with the Full-Stack Jamstack Mike Cavaliere ๐Ÿ”— mikecavaliere.com ๐Ÿ”— @mcavaliere In case you haven't heard of it... what is was the ? JavaScript APIs Markup + + = "JAM" Term coined by
  • 9. Fun and Games with the Full-Stack Jamstack Mike Cavaliere ๐Ÿ”— mikecavaliere.com ๐Ÿ”— @mcavaliere In case you haven't heard of it... what is was the ? Build things in JS Compile to HTML Fetch data w/APIs
  • 10. In case you haven't heard of it... what is the ? ๐Ÿš€ FAST ๐Ÿ”Ž SEO ๐Ÿ” Secure ๐Ÿ“ˆ Scalable ๐Ÿ’ฐ Saves $$$ ๐Ÿ’ป **Developer Experience (DX)** Benefits: ๐Ÿ”— Jamstack.org
  • 11. Fun and Games with the Full-Stack Jamstack Mike Cavaliere ๐Ÿ”— mikecavaliere.com ๐Ÿ”— @mcavaliere what is the Jamstack now? Build things in anything Compile to HTML Fetch data w/APIs Spoiler: it's the same thing. ๐Ÿ”— Netlify blog: The Jamstack definition evolved
  • 12. Fun and Games with the Full-Stack Jamstack Mike Cavaliere ๐Ÿ”— mikecavaliere.com ๐Ÿ”— @mcavaliere Jamstack frameworks https://jamstack.org/generators & many more
  • 13. Fun and Games with the Full-Stack Jamstack Mike Cavaliere ๐Ÿ”— mikecavaliere.com ๐Ÿ”— @mcavaliere Enter the Full-Stack Jamstack Frameworks that give you full control over the server-side. Coined by fsjam.org
  • 14. Part #1: Backstory How this project got started.
  • 15. Backstory Have 8 hours investment time weekly Demo on Friday Wanted fun and interactive Me: ๐Ÿ’ก "I'm gonna build a game!" (๐Ÿ™Œ๐Ÿผ TY, Echobind)
  • 16. What's the simplest "game" I can build in < 1 day?
  • 17. What's the simplest "game" I can build in < 1 day? Everybody logs in Click things Update list of things on screen. Highest #clicks on top.
  • 18. v1 Goals Ship in <8 hours (use investment time) Fun & interactive Don't spend money Use websockets (maybe)
  • 19. Building the MVP "Minimum Viable Product." aka, the simplest version I can ship.
  • 20. The tools I started the stack with, which are (mostly) part of my own standard boilerplate. ๐Ÿงฐ Toolbox ๐Ÿ›  JS Framework Database Data fetching UI/layout/design Authentication
  • 22. Fun and Games with the Full-Stack Jamstack Mike Cavaliere ๐Ÿ”— mikecavaliere.com ๐Ÿ”— @mcavaliere building v1 Planning Gen. scaffold / add dependencies GitHub Auth + DB schema Feature: emoji picker Feature: emoji list Tweak details Deploy
  • 23. v1 "Architecture" Boilerplate NextAuth GitHub login/signup Single-page app
  • 25. building v1 GitHub auth Create GitHub OAuth app / API keys Add next-auth + prisma adapter Done - boilerplate screens
  • 26. <EmojiPicker /> <Leaderboard /> <UserList /> building v1
  • 27. <EmojiPicker /> <Leaderboard /> <UserList /> missive/emoji-mart click POST /api/emoji/create INSERT emoji into DB Record a single vote
  • 28. <EmojiPicker /> <Leaderboard /> <UserList /> GET /api/emoji/list every 200ms query emoji, JOIN on votes aggregate & sort by vote count <span style={{ fontSize: 15 + e._count.votes * 5 }}> {e.native} </span>
  • 29. <EmojiPicker /> <Leaderboard /> <UserList /> GET /api/users/list every 200ms
  • 30. V1 (MVP) Takeaways Lessons & practiced skills.
  • 31. UI Page layout / styling Data fetching tech skills practiced Frontend Backend Data modeling Database CRUD API development General Type modeling (TypeScript) Authentication Product development (!)
  • 32. Library proficiency Shipping fast "Good enough" iteration other SkillS Improved
  • 33. How to ship fast Learning time accumulates Being selective increases focus Limit new learning Start with tools you already know. Don't reinvent the โ˜ธ๏ธ Search before building. Aim for "good enough." Add TODOs for later.
  • 35. v1 areas for improvement UX: Emoji get tooooo big UX: Updates slowly UX: No animation UX: How do we "win"? Tech: Code is a mess; can't add features easily
  • 38. Websockets / optimistic rendering 15-second rounds w/countdown End-of-round stats building v2 Rearchitected Design additions, animations
  • 40. building v2 ๐Ÿ™Shout out to Adding Websockets ๐Ÿš€ Real-time!
  • 42. Note: there are different ways to achieve this. building v2 Rounds architecture
  • 43. building v2 How countdown works currentStep == 13
  • 44. building v2 React rearchitecting Take state out of components Move into React contexts <RoundProvider> <EmojisProvider> Drop SWR, add react-query Add useEffectReducer() Move websockets, effects to custom hooks Separate side effects ๐Ÿ‘๐ŸผDecouple all the things.๐Ÿ‘๐Ÿผ Unnecessary details:
  • 45. V2 Takeaways Lessons & practiced skills.
  • 46. Code reuse patterns State management Refactoring patterns learnings Optimistic rendering Layout animations Declarative/imperative animations React architectural patterns Nested contexts Side effect management React UI Dev Software architecture Also Microservices Websockets / realtime events
  • 48. ๐Ÿ’ฅ Sound effects ๐Ÿ’ป Game mechanics ๐Ÿ—ก Weapons (take away votes) ๐Ÿ“ฑ Mobile friendliness โฑ Longer rounds ๐Ÿคช Random animations ? Who knows. Suggestions welcome! What's next? Open for contributions mcavaliere/emoji-battle mcavaliere/emoji-battle-api
  • 49. โžก Engineering requires lots of learning. โžก Fun helps us learn. ๐Ÿ’ก Therefore: have fun while learning and practicing. work on fun things. Recap:
  • 50. mcavaliere/emoji-battle thank you for watching! mikecavaliere.com @mcavaliere ๐Ÿง‘๐Ÿผโ€๐Ÿ’ป Feedback appreciated ๐Ÿ™